::p_load(tmap, sf, dplyr, DT, sp,
pacman
stplanr, performance, mapview,
ggpubr, tidyverse, httr, units, reshape2)
Take-home Exercise 2: Analyzing the Dynamics of Bus Commute Flow and Spatial Interaction in Singapore
Setting the Scene
The inquiry focuses on the key motivators prompting city residents to rise early for their daily commutes from home to work, and the consequences of discontinuing public bus services along specific routes. These issues represent significant challenges for transport operators and urban planners.
Traditionally, understanding these dynamics involved conducting extensive commuter surveys. These surveys, however, are expensive, time-intensive, and laborious. Moreover, the data collected often requires extensive processing and analysis, leading to reports that are frequently outdated by the time they are completed.
With the digitalization of urban infrastructure, including public buses, mass rapid transit systems, public utilities, and roads, new opportunities for data collection arise. The integration of pervasive computing technologies like GPS in vehicles and SMART cards among public transport users allows for detailed tracking of movement patterns across time and space.
Despite this, the rapid accumulation of geospatial data has overwhelmed planners’ capacity to effectively analyze and convert it into valuable insights. This inefficiency negatively impacts the return on investment in data collection and management.
Motivation and Objective
The purpose of this take-home project is twofold. First, it addresses the gap in applied research demonstrating the integration, analysis, and modeling of the increasingly available open data for effective policy-making. Despite the abundance of such data, there is a noticeable absence of practical studies showcasing its potential use in policy decisions.
Second, the project aims to fill the void in practical research illustrating the application of geospatial data science and analysis (GDSA) in decision-making processes.
Therefore, the assignment involves conducting a case study to showcase the value of GDSA. This will involve synthesizing publicly accessible data from various sources to construct spatial interaction models. These models will be used to identify and analyze factors influencing the urban mobility patterns of public bus transit.
1.Getting Started
The code snippet shown is responsible for loading various packages that provide essential tools and functions for the analysis.
pacman::p_load
: This function from thepacman
package streamlines the process of loading multiple R packages. If a package is not already installed,p_load
will install it before loading.tmap
: Utilized for creating thematic maps, essential in visualizing geospatial data.sf
: Stands for “simple features” and is used for handling and analyzing geospatial data.dplyr
: A part of thetidyverse
collection, this package is instrumental in data manipulation tasks like filtering, selecting, and summarizing data.DT
: Provides an R interface to the JavaScript library “DataTables”, enabling interactive display of data in tables.sp
: Offers classes and methods for spatial data, crucial for handling spatial points, lines, and polygons.stplanr
: Specifically designed for sustainable transport planning with spatial data.performance
: Useful for assessing and comparing the performance of statistical models.mapview
: Facilitates interactive viewing of spatial data in R.ggpubr
: A part of theggplot2
ecosystem, this package provides additional functions for creating publication-ready plots.tidyverse
: A collection of R packages designed for data science, providing tools for data manipulation, visualization, and more.httr
: Used for working with HTTP protocols to access web resources.units
: Deals with measurement units, crucial for handling and converting between different units of measurement in spatial data.reshape2
: Aids in reshaping data, transitioning between wide and long formats, which is often necessary in data analysis.
Each of these packages plays a specific role in the analysis, ranging from data manipulation and visualization to handling spatial and web-based data.
2.Data Importing
2.1Geospatial Data Importing
This R code snippet is focused on importing and transforming geospatial data related to Singapore’s bus stops and Metropolitan Planning Strategy Zones (MPSZ) for the year 2019. Using st_read
from the sf
package, it loads the BusStop and MPSZ-2019 layers from a specified directory (data/geospatial). Both datasets are then transformed to the local Singapore coordinate reference system (CRS code 3414) using st_transform
.
<- st_read(dsn = "data/geospatial",
busstop layer = "BusStop") %>%
st_transform(crs = 3414)
Reading layer `BusStop' from data source
`D:\KathyChiu77\ISSS624\Take-home Ex\Take-home Ex 2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 5161 features and 3 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 3970.122 ymin: 26482.1 xmax: 48284.56 ymax: 52983.82
Projected CRS: SVY21
<- st_read(dsn = "data/geospatial",
mpsz layer = "MPSZ-2019") %>%
st_transform(crs = 3414)
Reading layer `MPSZ-2019' from data source
`D:\KathyChiu77\ISSS624\Take-home Ex\Take-home Ex 2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 332 features and 6 fields
Geometry type: MULTIPOLYGON
Dimension: XY
Bounding box: xmin: 103.6057 ymin: 1.158699 xmax: 104.0885 ymax: 1.470775
Geodetic CRS: WGS 84
Display and grasp the basic situation of geospatial dataset mpsz.
mpsz
Simple feature collection with 332 features and 6 fields
Geometry type: MULTIPOLYGON
Dimension: XY
Bounding box: xmin: 2667.538 ymin: 15748.72 xmax: 56396.44 ymax: 50256.33
Projected CRS: SVY21 / Singapore TM
First 10 features:
SUBZONE_N SUBZONE_C PLN_AREA_N PLN_AREA_C REGION_N
1 MARINA EAST MESZ01 MARINA EAST ME CENTRAL REGION
2 INSTITUTION HILL RVSZ05 RIVER VALLEY RV CENTRAL REGION
3 ROBERTSON QUAY SRSZ01 SINGAPORE RIVER SR CENTRAL REGION
4 JURONG ISLAND AND BUKOM WISZ01 WESTERN ISLANDS WI WEST REGION
5 FORT CANNING MUSZ02 MUSEUM MU CENTRAL REGION
6 MARINA EAST (MP) MPSZ05 MARINE PARADE MP CENTRAL REGION
7 SUDONG WISZ03 WESTERN ISLANDS WI WEST REGION
8 SEMAKAU WISZ02 WESTERN ISLANDS WI WEST REGION
9 SOUTHERN GROUP SISZ02 SOUTHERN ISLANDS SI CENTRAL REGION
10 SENTOSA SISZ01 SOUTHERN ISLANDS SI CENTRAL REGION
REGION_C geometry
1 CR MULTIPOLYGON (((33222.98 29...
2 CR MULTIPOLYGON (((28481.45 30...
3 CR MULTIPOLYGON (((28087.34 30...
4 WR MULTIPOLYGON (((14557.7 304...
5 CR MULTIPOLYGON (((29542.53 31...
6 CR MULTIPOLYGON (((35279.55 30...
7 WR MULTIPOLYGON (((15772.59 21...
8 WR MULTIPOLYGON (((19843.41 21...
9 CR MULTIPOLYGON (((30870.53 22...
10 CR MULTIPOLYGON (((26879.04 26...
Export and save in rds format for later use.
<- write_rds(mpsz, "data/rds/mpsz.rds") mpsz
2.2Aspatial Data Importing
This line of R code is used for importing an aspatial dataset named origin_destination_bus_202310.csv from a specified directory (data/aspatial). The function read_csv
from the tidyverse
package efficiently reads the CSV file, converting it into a dataframe. This dataset likely contains origin-destination information for bus routes in October, 2023.
<- read_csv("data/aspatial/origin_destination_bus_202310.csv") odbus
The glimpse(odbus)
function provides a quick overview of the structure and contents of the odbus dataframe, summarizing its columns, data types, and a few initial entries.
glimpse(odbus)
Rows: 5,694,297
Columns: 7
$ YEAR_MONTH <chr> "2023-10", "2023-10", "2023-10", "2023-10", "2023-…
$ DAY_TYPE <chr> "WEEKENDS/HOLIDAY", "WEEKDAY", "WEEKENDS/HOLIDAY",…
$ TIME_PER_HOUR <dbl> 16, 16, 14, 14, 17, 17, 17, 7, 14, 14, 10, 20, 20,…
$ PT_TYPE <chr> "BUS", "BUS", "BUS", "BUS", "BUS", "BUS", "BUS", "…
$ ORIGIN_PT_CODE <chr> "04168", "04168", "80119", "80119", "44069", "2028…
$ DESTINATION_PT_CODE <chr> "10051", "10051", "90079", "90079", "17229", "2014…
$ TOTAL_TRIPS <dbl> 3, 5, 3, 5, 4, 1, 24, 2, 1, 7, 3, 2, 5, 1, 1, 1, 1…
This code converts the ORIGIN_PT_CODE and DESTINATION_PT_CODE columns in the odbus dataframe to factors, categorizing unique bus stop codes for analysis.
$ORIGIN_PT_CODE <- as.factor(odbus$ORIGIN_PT_CODE)
odbus$DESTINATION_PT_CODE <- as.factor(odbus$DESTINATION_PT_CODE) odbus
2.3Extracting the Study Data
2.3.1Extracting the Trips Volume of Weekday Morning Peak
This code snippet filters and summarizes the odbus dataframe to extract data on bus trips during weekday morning peak hours (6 to 9 AM). It selects records marked as WEEKDAY, groups them by origin and destination bus stop codes, and then calculates the total number of trips between each stop pair in this time frame.
<- odbus %>%
weekday6_9 filter(DAY_TYPE == "WEEKDAY") %>%
filter(TIME_PER_HOUR >= 6 &
<= 9) %>%
TIME_PER_HOUR group_by(ORIGIN_PT_CODE,
%>%
DESTINATION_PT_CODE) summarise(TRIPS = sum(TOTAL_TRIPS))
The datatable(weekday6_9)
function creates an interactive table display of the weekday6_9 dataframe, facilitating easy exploration and analysis of the data.
datatable(weekday6_9)
The write_rds(weekday6_9, "data/rds/weekday6_9.rds")
function saves the weekday6_9 dataframe to a file named weekday6_9.rds for future use.
write_rds(weekday6_9, "data/rds/weekday6_9.rds")
The read_rds("data/rds/weekday6_9.rds")
function loads the previously saved weekday6_9 dataframe back into the R environment.
<- read_rds("data/rds/weekday6_9.rds") weekday6_9
2.3.2Extracting the Trips Volume of Weekday Afternoon Peak
Repeat the process above for weekday afternoon peak (5-8 PM).
<- odbus %>%
weekday17_20 filter(DAY_TYPE == "WEEKDAY") %>%
filter(TIME_PER_HOUR >= 17 &
<= 20) %>%
TIME_PER_HOUR group_by(ORIGIN_PT_CODE,
%>%
DESTINATION_PT_CODE) summarise(TRIPS = sum(TOTAL_TRIPS))
datatable(weekday17_20)
write_rds(weekday17_20, "data/rds/weekday17_20.rds")
<- read_rds("data/rds/weekday17_20.rds") weekday17_20
2.3.3Extracting the Trips Volume of Weekend/Holiday Morning Peak
Repeat the process above for weekend/holiday morning peak (11 AM-2 PM).
<- odbus %>%
weekend11_14 filter(DAY_TYPE == "WEEKENDS/HOLIDAY") %>%
filter(TIME_PER_HOUR >= 11 &
<= 14) %>%
TIME_PER_HOUR group_by(ORIGIN_PT_CODE,
%>%
DESTINATION_PT_CODE) summarise(TRIPS = sum(TOTAL_TRIPS))
datatable(weekend11_14)
write_rds(weekend11_14, "data/rds/weekend11_14.rds")
<- read_rds("data/rds/weekend11_14.rds") weekend11_14
2.3.4Extracting the Trips Volume of Weekend/Holiday Evening Peak
Repeat the process above for weekend/holiday evening peak (4-7 PM).
<- odbus %>%
weekend16_19 filter(DAY_TYPE == "WEEKENDS/HOLIDAY") %>%
filter(TIME_PER_HOUR >= 16 &
<= 19) %>%
TIME_PER_HOUR group_by(ORIGIN_PT_CODE,
%>%
DESTINATION_PT_CODE) summarise(TRIPS = sum(TOTAL_TRIPS))
datatable(weekend16_19)
write_rds(weekend16_19, "data/rds/weekend16_19.rds")
<- read_rds("data/rds/weekend16_19.rds") weekend16_19
4.Geospatial Data Wrangling
4.1Combining busstop and mpsz
The code st_intersection(busstop, mpsz)
combines the busstop and mpsz datasets to retain only those bus stops located within the boundaries of Singapore’s metropolitan planning zones. The select(BUS_STOP_N, SUBZONE_C)
part then extracts specific columns, namely bus stop IDs and subzone codes, from the intersected dataset.
<- st_intersection(busstop, mpsz) %>%
busstop_mpsz select(BUS_STOP_N, SUBZONE_C)
The mapview(busstop_mpsz)
function creates an interactive map displaying the spatial data from the busstop_mpsz dataframe, visualizing the locations of bus stops within Singapore’s planning zones.
mapview(busstop_mpsz)
4.2Creating Hexagon Layer
The code st_make_grid(mpsz, cellsize = 2 * 375 / sqrt(3), square = FALSE)
generates a hexagonal grid overlay on the mpsz spatial data. Each hexagon in the grid has a perpendicular distance from its center to its edges of 375 meters, effectively creating a hexagonal pattern to represent Traffic Analysis Zones (TAZs).
<- st_make_grid(mpsz, cellsize = 2 * 375 / sqrt(3), square = FALSE) hex_grid
This code converts the hex_grid object into a simple features (sf) dataframe hex_grid_sf, and then adds a new column hex_id that assigns a unique identifier to each hexagon in the grid.
<- st_sf(geometry = hex_grid) %>%
hex_grid_sf mutate(hex_id = 1:length(hex_grid))
This code calculates the number of bus stops within each hexagon of the hex_grid_sf grid. It uses st_intersects
to identify which bus stops (busstop_mpsz) fall within each hexagon, and then applies a function to count these stops for each hexagon, handling any missing values (na.rm = TRUE
).
<- st_intersects(hex_grid_sf, busstop_mpsz, sparse = FALSE) %>%
busstop_counts apply(1, function(x) sum(x, na.rm = TRUE))
This step assigns the computed bus stop counts (busstop_counts
) to a new column bus_stop_count
in the hex_grid_sf dataframe, effectively adding the number of bus stops within each hexagon to the grid data.
$bus_stop_count <- busstop_counts hex_grid_sf
This code filters the hex_grid_sf dataframe to keep only those hexagons that have one or more bus stops, effectively removing hexagons with no bus stop presence.
<- hex_grid_sf %>%
hex_grid_sf filter(bus_stop_count > 0)
This code creates a visual map in R using the tmap
package. It overlays hexagons from hex_grid_sf onto the mpsz spatial layout, coloring them based on the count of bus stops in each hexagon. The map features a legend, titles, and styling details for clarity and visual appeal. The final map displays the distribution of bus stops across Singapore, with additional borders for context and credits for data sources.
tmap_options(check.and.fix = TRUE)
<- tm_shape(hex_grid_sf) +
map_hexagon tm_polygons(
col = "bus_stop_count",
palette = "Purples",
style = "cont",
title = "Number of Bus Stops",
id = "hex_id",
showNA = FALSE,
alpha = 0.6,
popup.vars = c("Number of Bus Stops" = "bus_stop_count"),
popup.format = list(bus_stop_count = list(format = "f", digits = 0))
+
) tm_shape(mpsz) +
tm_borders(col = "grey75", lwd = 0.7) +
tm_layout(
main.title = "Bus Stop Distribution in Singapore",
main.title.size = 1.5,
legend.title.size = 1,
legend.text.size = 0.8,
legend.position = c("left", "bottom"),
frame = FALSE,
inner.margins = c(0.05, 0.05, 0.05, 0.05)
+
) tm_credits("Data Source: LTA DataMall, Data.gov.sg", position = c("RIGHT", "BOTTOM"), size = 0.8) +
tm_view(view.legend.position = c("left", "bottom"))
map_hexagon
Observations from the map:
Blank Areas: The absence of hexagons in certain parts of the map suggests these are areas with no bus stops. These could be non-residential areas, such as industrial zones, green spaces, or water bodies where public bus services are not necessary or practical.
Bus Stop-Dense Areas: Regions densely packed with hexagons indicate a high concentration of bus stops. These areas are likely to be highly urbanized with significant residential and commercial activities, necessitating a greater number of bus stops to accommodate the public transport needs of the population.
The distribution pattern reflects the urban planning and public transportation infrastructure of Singapore, designed to cater to areas with high commuter demand while excluding zones where bus stops are not viable.
4.3Correspondence of Hexagon and Bus Stop ID
The code creates a new dataset busstop_hex by intersecting busstop locations with the hex_grid_sf to assign a hex_id to each bus stop. It then selects the bus stop number and corresponding hex_id, and removes the spatial geometry data for a simple reference table. The final step omits any entries with missing values to ensure a clean dataset for merging with other data based on hexagon and bus stop IDs.
<- st_intersection(busstop, hex_grid_sf) %>%
busstop_hex select(BUS_STOP_N, hex_id) %>%
st_drop_geometry()
<- na.omit(busstop_hex) busstop_hex
The head(busstop_hex)
function displays the first few rows of the busstop_hex dataframe for a quick preview of its structure and data.
head(busstop_hex)
BUS_STOP_N hex_id
3269 25059 393
254 26379 444
2570 25751 488
4203 26389 490
2403 26369 491
2897 25761 535
Export and save busstop_hex in rds format for future use.
write_rds(busstop_hex, "data/rds/busstop_hex.rds")
Remove items no longer needed from R environment to free memory and avoid redundancy.
rm(hex_grid, map_hexagon, odbus, busstop_counts)
5.Preparing Commute Flow Data
5.1Weekday Morning Peak Flow
The code merges flow data from weekday6_9 with bus stop IDs from busstop_hex based on common origin bus stop numbers, then renames the key columns for clarity, assigning hex IDs to origin points and preserving destination bus stop codes.
<- left_join(weekday6_9 , busstop_hex,
weekday_morning_od by = c("ORIGIN_PT_CODE" = "BUS_STOP_N")) %>%
rename(ORIGIN_BS = ORIGIN_PT_CODE,
ORIGIN_HEX = hex_id,
DESTIN_BS = DESTINATION_PT_CODE)
Before continue, it is a good practice for us to check for duplicating records (It can be judged based on data frame is blank or not).
<- weekday_morning_od %>%
duplicate group_by_all() %>%
filter(n()>1) %>%
ungroup()
If duplicated records are found, the code chunk below will be used to retain the unique records.
<- unique(weekday_morning_od) weekday_morning_od
This code further enhances the weekday_morning_od dataframe by joining it with the busstop_hex dataframe to append hex_id information corresponding to the destination bus stops, linking each trip’s endpoint to its respective hexagonal spatial zone.
<- left_join(weekday_morning_od , busstop_hex,
weekday_morning_od by = c("DESTIN_BS" = "BUS_STOP_N"))
<- weekday_morning_od %>%
duplicate group_by_all() %>%
filter(n()>1) %>%
ungroup()
<- unique(weekday_morning_od) weekday_morning_od
This step renames the destination hex ID column for clarity, removes any rows with missing data, then groups the data by origin and destination hex IDs, and summarizes it to calculate the total number of trips made during the weekday morning peak hours between each hexagon pair.
<- weekday_morning_od %>%
weekday_morning_od rename(DESTIN_HEX = hex_id) %>%
drop_na() %>%
group_by(ORIGIN_HEX, DESTIN_HEX) %>%
summarise(WEEKDAY_MORNING_PEAK = sum(TRIPS))
It is time to save the output into an rds file format.
write_rds(weekday_morning_od, "data/rds/weekday_morning_od.rds")
<- read_rds("data/rds/weekday_morning_od.rds") weekday_morning_od
5.2Weekday Afternoon Peak Flow
Repeat the process above for weekday afternoon peak (5-8 PM).
<- left_join(weekday17_20 , busstop_hex,
weekday_afternoon_od by = c("ORIGIN_PT_CODE" = "BUS_STOP_N")) %>%
rename(ORIGIN_BS = ORIGIN_PT_CODE,
ORIGIN_HEX = hex_id,
DESTIN_BS = DESTINATION_PT_CODE)
<- weekday_afternoon_od %>%
duplicate group_by_all() %>%
filter(n()>1) %>%
ungroup()
<- unique(weekday_afternoon_od) weekday_afternoon_od
<- left_join(weekday_afternoon_od , busstop_hex,
weekday_afternoon_od by = c("DESTIN_BS" = "BUS_STOP_N"))
<- weekday_afternoon_od %>%
duplicate group_by_all() %>%
filter(n()>1) %>%
ungroup()
<- unique(weekday_afternoon_od) weekday_afternoon_od
<- weekday_afternoon_od %>%
weekday_afternoon_od rename(DESTIN_HEX = hex_id) %>%
drop_na() %>%
group_by(ORIGIN_HEX, DESTIN_HEX) %>%
summarise(WEEKDAY_AFTERNOON_PEAK = sum(TRIPS))
write_rds(weekday_afternoon_od, "data/rds/weekday_afternoon_od.rds")
<- read_rds("data/rds/weekday_afternoon_od.rds") weekday_afternoon_od
5.3Weekend Morning Peak Flow
Repeat the process above for weekend/holiday morning peak (11 AM-2 PM).
<- left_join(weekend11_14 , busstop_hex,
weekend_morning_od by = c("ORIGIN_PT_CODE" = "BUS_STOP_N")) %>%
rename(ORIGIN_BS = ORIGIN_PT_CODE,
ORIGIN_HEX = hex_id,
DESTIN_BS = DESTINATION_PT_CODE)
<- weekend_morning_od %>%
duplicate group_by_all() %>%
filter(n()>1) %>%
ungroup()
<- unique(weekend_morning_od) weekend_morning_od
<- left_join(weekend_morning_od , busstop_hex,
weekend_morning_od by = c("DESTIN_BS" = "BUS_STOP_N"))
<- weekend_morning_od %>%
duplicate group_by_all() %>%
filter(n()>1) %>%
ungroup()
<- unique(weekend_morning_od) weekend_morning_od
<- weekend_morning_od %>%
weekend_morning_od rename(DESTIN_HEX = hex_id) %>%
drop_na() %>%
group_by(ORIGIN_HEX, DESTIN_HEX) %>%
summarise(WEEKEND_MORNING_PEAK = sum(TRIPS))
write_rds(weekend_morning_od, "data/rds/weekend_morning_od.rds")
<- read_rds("data/rds/weekend_morning_od.rds") weekend_morning_od
5.4Weekend Evening Peak Flow
Repeat the process above for weekend/holiday evening peak (4-7 PM).
<- left_join(weekend16_19 , busstop_hex,
weekend_evening_od by = c("ORIGIN_PT_CODE" = "BUS_STOP_N")) %>%
rename(ORIGIN_BS = ORIGIN_PT_CODE,
ORIGIN_HEX = hex_id,
DESTIN_BS = DESTINATION_PT_CODE)
<- weekend_evening_od %>%
duplicate group_by_all() %>%
filter(n()>1) %>%
ungroup()
<- unique(weekend_evening_od) weekend_evening_od
<- left_join(weekend_evening_od , busstop_hex,
weekend_evening_od by = c("DESTIN_BS" = "BUS_STOP_N"))
<- weekend_evening_od %>%
duplicate group_by_all() %>%
filter(n()>1) %>%
ungroup()
<- unique(weekend_evening_od) weekend_evening_od
<- weekend_evening_od %>%
weekend_evening_od rename(DESTIN_HEX = hex_id) %>%
drop_na() %>%
group_by(ORIGIN_HEX, DESTIN_HEX) %>%
summarise(WEEKEND_EVENING_PEAK = sum(TRIPS))
write_rds(weekend_evening_od, "data/rds/weekend_evening_od.rds")
<- read_rds("data/rds/weekend_evening_od.rds") weekend_evening_od
Remove items no longer needed to free memory and avoid redundancy.
rm(weekday6_9, weekday17_20, weekend11_14, weekend16_19)
6.Visualising Commute Flow
6.1Removing Intra-zonal Flows
The code filters out intra-zonal flows from four separate data frames by excluding rows where the origin hexagon (ORIGIN_HEX) is the same as the destination hexagon (DESTIN_HEX). This step is crucial for analysis as it removes trips that start and end within the same traffic analysis zone, focusing the study on inter-zonal movements which are more significant for understanding commuting patterns and the broader transportation network efficiency.
<- weekday_morning_od[weekday_morning_od$ORIGIN_HEX!=weekday_morning_od$DESTIN_HEX,] weekday_morning_od1
<- weekday_afternoon_od[weekday_afternoon_od$ORIGIN_HEX!=weekday_afternoon_od$DESTIN_HEX,] weekday_afternoon_od1
<- weekend_morning_od[weekend_morning_od$ORIGIN_HEX!=weekend_morning_od$DESTIN_HEX,] weekend_morning_od1
<- weekend_evening_od[weekend_evening_od$ORIGIN_HEX!=weekend_evening_od$DESTIN_HEX,] weekend_evening_od1
6.2Creating the Desire Lines
The code uses the od2line
function to transform the inter-zonal flow data from each time period into desire lines, which are spatial representations of the volume and direction of trips between different hexagons. These lines are prepared for visualization, allowing us to graphically depict and analyze commuting patterns for different times of the day and week on a map.
<- od2line(flow = weekday_morning_od1,
weekday_morning_flowLine zones = hex_grid_sf,
zone_code = "hex_id")
<- od2line(flow = weekday_afternoon_od1,
weekday_afternoon_flowLine zones = hex_grid_sf,
zone_code = "hex_id")
<- od2line(flow = weekend_morning_od1,
weekend_morning_flowLine zones = hex_grid_sf,
zone_code = "hex_id")
<- od2line(flow = weekend_evening_od1,
weekend_evening_flowLine zones = hex_grid_sf,
zone_code = "hex_id")
6.3Visualising the Desire Lines
6.3.1Weekday Morning Peak Commute Flow Map
This visualization code uses the tmap
package to plot the hexagonal grid as a base, draws the boundaries of the metropolitan planning zones (MPZ), and overlays the desire lines representing high-volume weekday morning commute flows in Singapore. The lines are styled to vary in width and color intensity based on the volume of commutes, with thicker, darker lines indicating higher numbers of trips.
tm_shape(hex_grid_sf) +
tm_polygons(
border.col = "grey50",
border.alpha = 0.6,
alpha = 0.1
+
) tm_shape(weekday_morning_flowLine %>%
filter(WEEKDAY_MORNING_PEAK >= 5000)) +
tm_lines(
lwd = "WEEKDAY_MORNING_PEAK",
style = "quantile",
scale = c(0.1, 1, 3, 5, 7, 10),
n = 6,
alpha = 0.5,
palette = "Blues"
+
) tm_shape(mpsz) +
tm_borders(
col = "darkblue",
alpha = 0.1,
lwd = 1.5
+
) tm_layout(
main.title = "Weekday Morning Commute Flows in Singapore",
main.title.position = "center",
main.title.size = 1.0,
legend.title.size = 0.8,
legend.text.size = 0.7,
legend.position = c("left", "bottom"),
frame = FALSE,
inner.margins = c(0.05, 0.05, 0.05, 0.05)
+
) tm_credits("Source: LTA DataMall", position = c("RIGHT", "BOTTOM"), size = 0.5)
Insight from the Map:
The “Weekday Morning Commute Flows in Singapore” map reveals significant commuter traffic between various regions during peak morning hours. The thicker, darker lines suggest heavy flow between central business districts and outlying residential areas, indicating a typical urban commute pattern where many residents travel towards city centers for work. Areas with dense hexagon clusters, likely representing central and suburban residential zones, show extensive outward flow, highlighting these as key commuter hubs. Conversely, some regions exhibit sparse lines, suggesting lower population density or less reliance on public bus transit.
6.3.2Weekday Afternoon Peak Commute Flow Map
tm_shape(hex_grid_sf) +
tm_polygons(
border.col = "grey50",
border.alpha = 0.6,
alpha = 0.1
+
) tm_shape(weekday_afternoon_flowLine %>%
filter(WEEKDAY_AFTERNOON_PEAK >= 5000)) +
tm_lines(
lwd = "WEEKDAY_AFTERNOON_PEAK",
style = "quantile",
scale = c(0.1, 1, 3, 5, 7, 10),
n = 6,
alpha = 0.5,
palette = "Blues"
+
) tm_shape(mpsz) +
tm_borders(
col = "darkblue",
alpha = 0.1,
lwd = 1.5
+
) tm_layout(
main.title = "Weekday Afternoon Commute Flows in Singapore",
main.title.position = "center",
main.title.size = 1.0,
legend.title.size = 0.8,
legend.text.size = 0.7,
legend.position = c("left", "bottom"),
frame = FALSE,
inner.margins = c(0.05, 0.05, 0.05, 0.05)
+
) tm_credits("Source: LTA DataMall", position = c("RIGHT", "BOTTOM"), size = 0.5)
Insight from the Map:
The “Weekday Afternoon Commute Flows in Singapore” map suggests a reverse commute pattern from the morning, with significant flows from central areas to the outskirts, likely as people return home from work. The dense lines indicate high traffic volumes, particularly from the CBD and other employment hubs to residential districts. The distribution and volume of these lines can indicate areas with a high demand for evening public transportation services, and such insights could inform enhancements to bus service capacity and frequency to meet commuter needs during peak hours.
6.3.3Weekend Morning Peak Commute Flow Map
tm_shape(hex_grid_sf) +
tm_polygons(
border.col = "grey50",
border.alpha = 0.6,
alpha = 0.1
+
) tm_shape(weekend_morning_flowLine %>%
filter(WEEKEND_MORNING_PEAK >= 3000)) +
tm_lines(
lwd = "WEEKEND_MORNING_PEAK",
style = "quantile",
scale = c(0.1, 1, 3, 5, 7, 13, 15),
n = 7,
alpha = 0.5,
palette = "Blues"
+
) tm_shape(mpsz) +
tm_borders(
col = "darkblue",
alpha = 0.1,
lwd = 1.5
+
) tm_layout(
main.title = "Weekend Morning Commute Flows in Singapore",
main.title.position = "center",
main.title.size = 1.0,
legend.title.size = 0.8,
legend.text.size = 0.7,
legend.position = c("left", "bottom"),
frame = FALSE,
inner.margins = c(0.05, 0.05, 0.05, 0.05)
+
) tm_credits("Source: LTA DataMall", position = c("RIGHT", "BOTTOM"), size = 0.5)
Insight from the Map:
The “Weekend Morning Commute Flows in Singapore” map shows a noticeable reduction in volume and fewer dense flow lines compared to weekdays, reflecting a typical decrease in commuting activity during weekends. The flows that are present may indicate travel to weekend-specific destinations like markets, recreational areas, or places of worship. The patterns suggest that the weekend movement is more dispersed and possibly oriented towards leisure or non-work-related activities, contrasting the concentrated, work-directed flows of weekday mornings.
6.3.4Weekend Evening Peak Commute Flow Map
tm_shape(hex_grid_sf) +
tm_polygons(
border.col = "grey50",
border.alpha = 0.6,
alpha = 0.1
+
) tm_shape(weekend_evening_flowLine %>%
filter(WEEKEND_EVENING_PEAK >= 3000)) +
tm_lines(
lwd = "WEEKEND_EVENING_PEAK",
style = "quantile",
scale = c(0.1, 1, 3, 5, 7, 10),
n = 6,
alpha = 0.5,
palette = "Blues"
+
) tm_shape(mpsz) +
tm_borders(
col = "darkblue",
alpha = 0.1,
lwd = 1.5
+
) tm_layout(
main.title = "Weekend Evening Commute Flows in Singapore",
main.title.position = "center",
main.title.size = 1.0,
legend.title.size = 0.8,
legend.text.size = 0.7,
legend.position = c("left", "bottom"),
frame = FALSE,
inner.margins = c(0.05, 0.05, 0.05, 0.05)
+
) tm_credits("Source: LTA DataMall", position = c("RIGHT", "BOTTOM"), size = 0.5)
Insight from the Map:
The “Weekend Evening Commute Flows in Singapore” map likely indicates an increase in volume compared to the morning, with more pronounced traffic flows towards residential areas and perhaps popular evening destinations. This contrasts with weekday evenings, where the flow would primarily be homeward from work centers. The patterns may suggest leisure and social activities are influencing travel, with possibly greater flows to entertainment or dining hubs and a more dispersed pattern as people return from various activities across the city.
rm(duplicate, weekday_morning_flowLine, weekday_morning_od, weekday_morning_od1,
weekend_morning_flowLine, weekend_morning_od, weekend_morning_od1, weekend_evening_flowLine, weekend_evening_od, weekend_evening_od1)
7.Attractiveness Factors
In the subsequent section, we will delve into a targeted analysis of the weekday afternoon peak period. The reason for this focus stems from the comprehensive nature of commute drivers during this time. On weekday afternoons, residents are not only heading home from work or school but often transition to leisure activities such as shopping or entertainment venues directly. This complexity presents a rich tapestry of commuting patterns worthy of in-depth examination.
7.1Entertainment Distribution Integration
Entertainment distribution is considered an attractiveness factor because these venues often draw people to travel to them, influencing commuting and traffic flows. The provided code reads in the entertn geospatial data and then calculates the count of entertainment venues within each hexagon of the hex_grid_sf grid, integrating this data to quantify the level of entertainment-related attractiveness of different areas.
<- st_read(dsn = "data/geospatial",
entertn layer = "entertn")
Reading layer `entertn' from data source
`D:\KathyChiu77\ISSS624\Take-home Ex\Take-home Ex 2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 114 features and 3 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 10809.34 ymin: 26528.63 xmax: 41600.62 ymax: 46375.77
Projected CRS: SVY21 / Singapore TM
$entertn_count <- lengths(st_intersects(hex_grid_sf, entertn)) hex_grid_sf
7.2Food & Beverage Distribution Integration
Food and beverage (F&B) venues act as attractiveness factors because they are destinations that people may frequently visit after work, thus influencing traffic and transportation patterns within an area.
<- st_read(dsn = "data/geospatial",
FB layer = "F&B")
Reading layer `F&B' from data source
`D:\KathyChiu77\ISSS624\Take-home Ex\Take-home Ex 2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 1919 features and 3 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 6010.495 ymin: 25343.27 xmax: 45462.43 ymax: 48796.21
Projected CRS: SVY21 / Singapore TM
$FB_count <- lengths(st_intersects(hex_grid_sf, FB)) hex_grid_sf
7.3Leisure & Recreation Distribution Integration
Leisure and recreation spots are included in the study of weekday afternoon peak times because they are popular destinations that contribute to the flow of people and the overall demand for transportation services during these periods.
<- st_read(dsn = "data/geospatial",
lere layer = "Liesure&Recreation")
Reading layer `Liesure&Recreation' from data source
`D:\KathyChiu77\ISSS624\Take-home Ex\Take-home Ex 2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 1217 features and 30 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 6010.495 ymin: 25134.28 xmax: 48439.77 ymax: 50078.88
Projected CRS: SVY21 / Singapore TM
$lere_count <- lengths(st_intersects(hex_grid_sf, lere)) hex_grid_sf
7.4Retail Distribution Integration
Retail locations are included in the analysis because they are key destinations that attract shoppers, impacting people’s movement and transit patterns, especially during peak times.
<- st_read(dsn = "data/geospatial",
retail layer = "Retails")
Reading layer `Retails' from data source
`D:\KathyChiu77\ISSS624\Take-home Ex\Take-home Ex 2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 37635 features and 3 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 4737.982 ymin: 25171.88 xmax: 48265.04 ymax: 50135.28
Projected CRS: SVY21 / Singapore TM
$retail_count <- lengths(st_intersects(hex_grid_sf, retail)) hex_grid_sf
7.5Train Exits Distribution Integration
<- st_read(dsn = "data/geospatial",
trainexits layer = "Train_Station_Exit_Layer")
Reading layer `Train_Station_Exit_Layer' from data source
`D:\KathyChiu77\ISSS624\Take-home Ex\Take-home Ex 2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 565 features and 2 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 6134.086 ymin: 27499.7 xmax: 45356.36 ymax: 47865.92
Projected CRS: SVY21
The code transforms the coordinates of train exit locations to match the coordinate reference system of the hexagonal grid and then counts the number of train exits within each hexagon. This reflects the influence of proximity to train stations on bus ridership, as people often use buses to access MRT stations in Singapore.
<- st_transform(trainexits, st_crs(hex_grid_sf))
trainexits $trainexits_count <- lengths(st_intersects(hex_grid_sf, trainexits)) hex_grid_sf
7.6Residence Distribution Integration
The code reads a CSV file containing housing data (hdb.csv), filters for entries marked as residential (Y), selects columns for latitude, longitude, and total dwelling units, and removes any rows with missing data. This prepares a dataset of residential locations and their capacity, which is important for analyzing homebound travel patterns.
<- read_csv("data/aspatial/hdb.csv") hdb
<- hdb %>%
residential filter(residential == "Y") %>%
select(lat, lng, total_dwelling_units) %>%
na.omit()
This step converts the residential dataframe into a spatial dataframe with longitude and latitude coordinates, sets its coordinate reference system (CRS) to WGS 84 (CRS 4326), and then transforms it to match the CRS of the hex_grid_sf for compatibility in subsequent spatial merging.
<- st_as_sf(residential,
residential coords = c("lng", "lat"),
crs = 4326) %>%
st_transform(crs = st_crs(hex_grid_sf))
This step calculates the total number of dwelling units from the residential data within each hexagon of the hex_grid_sf grid. It uses spatial intersection to identify which residential entries fall into each hexagon and then sums the total_dwelling_units for those entries, assigning this sum to a new residential_count column in the hex grid.
<- st_intersects(hex_grid_sf, residential, sparse = TRUE)
intersections $residential_count <- mapply(function(index, residential) {
hex_grid_sfsum(residential$total_dwelling_units[index], na.rm = TRUE)
MoreArgs = list(residential = residential)) }, intersections,
rm(intersections)
8.Propulsive Factors
To understand the propulsive factors behind bus commute flow, we focus on several key factors. Firstly, the density of bus stops, as captured by bus_stop_count, indicates the convenience and accessibility of bus services. Secondly, the distribution of businesses and schools sheds light on major daily locations, as these are places where people work and study, often traveling from these places during weekday afternoons. Additionally, we include the distribution of financial services, recognizing that these often coincide with business hubs and can be significant in influencing commuting patterns.
8.1Business Distribution Integration
<- st_read(dsn = "data/geospatial",
business layer = "Business")
Reading layer `Business' from data source
`D:\KathyChiu77\ISSS624\Take-home Ex\Take-home Ex 2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 6550 features and 3 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 3669.148 ymin: 25408.41 xmax: 47034.83 ymax: 50148.54
Projected CRS: SVY21 / Singapore TM
$business_count <- lengths(st_intersects(hex_grid_sf, business)) hex_grid_sf
8.2School Distribution Integration
This code snippet queries an API to gather information about schools in Singapore. It first reads a CSV file listing school postal codes, then iterates through these codes, sending a request to the OneMap API for each. For postal codes with found data, it appends relevant details to the found dataframe. If no data is found for a postal code, it adds that code to the not_found dataframe.
<-"https://www.onemap.gov.sg/api/common/elastic/search"
url
<-read_csv("data/aspatial/Generalinformationofschools.csv")
csv<-csv$`postal_code`
postcodes
<-data.frame()
found<-data.frame()
not_found
for(postcode in postcodes){
<-list('searchVal'=postcode,'returnGeom'='Y','getAddrDetails'='Y','pageNum'='1')
query<- GET(url,query=query)
res
if((content(res)$found)!=0){
<-rbind(found,data.frame(content(res))[4:13])
foundelse{
} = data.frame(postcode)
not_found
} }
The next step merges the original school information from the csv file with the data retrieved from the API (found), matching entries based on postal codes. The merged data, which now includes enhanced details for each school, is saved to a new CSV file schools.csv. Additionally, postal codes for which no data was found are saved in a separate file not_found.csv, allowing for further review or data acquisition efforts.
= merge(csv, found, by.x = 'postal_code', by.y = 'results.POSTAL', all = TRUE)
merged write.csv(merged, file = "data/aspatial/schools.csv")
write.csv(not_found, file = "data/aspatial/not_found.csv")
The code below initially reads the enhanced schools.csv file and renames latitude and longitude columns for clarity. It then selects specific columns, including postal code, school name, latitude, and longitude. Following this, it filters out any schools with missing latitude or longitude data. Finally, the filtered dataset is converted into a spatial dataframe with a coordinate reference system (CRS) of WGS 84 (CRS 4326) and then transformed to match Singapore’s local CRS (3414) for spatial analysis compatibility.
<- read_csv("data/aspatial/schools.csv") %>%
schools rename(latitude = "results.LATITUDE",
longitude = "results.LONGITUDE")%>%
select(postal_code, school_name, latitude, longitude)
<- schools %>%
schools filter(!is.na(longitude) & !is.na(latitude)) %>%
st_as_sf(coords = c("longitude", "latitude"), crs = 4326) %>%
st_transform(crs = 3414)
$school_count <- lengths(st_intersects(hex_grid_sf, schools)) hex_grid_sf
rm(csv, found, merged, not_found, query, res,
postcode, postcodes, url)
8.3Financial Service Distribution Integration
<- st_read(dsn = "data/geospatial",
finserv layer = "FinServ")
Reading layer `FinServ' from data source
`D:\KathyChiu77\ISSS624\Take-home Ex\Take-home Ex 2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 3320 features and 3 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 4881.527 ymin: 25171.88 xmax: 46526.16 ymax: 49338.02
Projected CRS: SVY21 / Singapore TM
$finserv_count <- lengths(st_intersects(hex_grid_sf, finserv)) hex_grid_sf
8.4Final Check of Integrated Data
Before moving to next section, we may kindly check the basic structure and content of integrated data hex_grid_sf.
datatable(hex_grid_sf)
9.Computing Distance Matrix
9.1Converting from sf Data.table to Spatial Polygons Data.frame
This conversion is necessary for compatibility with spatial functions or methods that specifically require data in the sp format, rather than the sf format.
<- as(hex_grid_sf, "Spatial")
hex_grid_sp hex_grid_sp
class : SpatialPolygonsDataFrame
features : 1853
extent : 3966.576, 48566.88, 26373.72, 50123.72 (xmin, xmax, ymin, ymax)
crs : +proj=tmerc +lat_0=1.36666666666667 +lon_0=103.833333333333 +k=1 +x_0=28001.642 +y_0=38744.572 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs
variables : 11
names : hex_id, bus_stop_count, entertn_count, FB_count, lere_count, retail_count, trainexits_count, residential_count, business_count, school_count, finserv_count
min values : 393, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0
max values : 9988, 13, 8, 71, 26, 986, 9, 3531, 60, 4, 91
9.2 Computing the Distance Matrix
The spDists
function computes distances between each pair of hexagons in the grid. The parameter longlat = FALSE
indicates that the distances are calculated in a planar manner, suitable for the coordinate system used. The final line displays the first 10 rows and columns of this distance matrix for a quick inspection of the calculated distances.
<- spDists(hex_grid_sp,
dist longlat = FALSE)
head(dist, n=c(10, 10))
[,1] [,2] [,3] [,4] [,5] [,6] [,7]
[1,] 0.0000 2633.9134 866.0254 2291.2878 3031.0889 750.0000 1984.3135
[2,] 2633.9134 0.0000 1887.4586 433.0127 433.0127 2291.2878 866.0254
[3,] 866.0254 1887.4586 0.0000 1500.0000 2250.0000 433.0127 1145.6439
[4,] 2291.2878 433.0127 1500.0000 0.0000 750.0000 1887.4586 433.0127
[5,] 3031.0889 433.0127 2250.0000 750.0000 0.0000 2633.9134 1145.6439
[6,] 750.0000 2291.2878 433.0127 1887.4586 2633.9134 0.0000 1500.0000
[7,] 1984.3135 866.0254 1145.6439 433.0127 1145.6439 1500.0000 0.0000
[8,] 4175.8233 1561.2495 3381.9373 1887.4586 1145.6439 3750.0000 2250.0000
[9,] 1732.0508 1299.0381 866.0254 866.0254 1561.2495 1145.6439 433.0127
[10,] 2410.9127 750.0000 1561.2495 433.0127 866.0254 1887.4586 433.0127
[,8] [,9] [,10]
[1,] 4175.823 1732.0508 2410.9127
[2,] 1561.249 1299.0381 750.0000
[3,] 3381.937 866.0254 1561.2495
[4,] 1887.459 866.0254 433.0127
[5,] 1145.644 1561.2495 866.0254
[6,] 3750.000 1145.6439 1887.4586
[7,] 2250.000 433.0127 433.0127
[8,] 0.000 2633.9134 1887.4586
[9,] 2633.913 0.0000 750.0000
[10,] 1887.459 750.0000 0.0000
9.3Labeling Column and Row Headers of the Distance Matrix
This code assigns the hex_id values from the hex_grid_sf dataframe as both column and row headers for the distance matrix dist. By doing so, each row and column in the matrix is clearly labeled with the corresponding hexagon’s identifier, making it easier to interpret the distances between specific hexagons.
<- hex_grid_sf$hex_id hex_names
colnames(dist) <- paste0(hex_names)
rownames(dist) <- paste0(hex_names)
9.4Pivoting Distance Value by HEX_ID
The code transforms the distance matrix dist into a long format data frame distPair using the melt
function. Each row in distPair represents a pair of hexagons with their corresponding distance.
<- melt(dist) %>%
distPair rename(dist = value)
head(distPair, 10)
Var1 Var2 dist
1 393 393 0.0000
2 444 393 2633.9134
3 488 393 866.0254
4 490 393 2291.2878
5 491 393 3031.0889
6 535 393 750.0000
7 537 393 1984.3135
8 540 393 4175.8233
9 583 393 1732.0508
10 584 393 2410.9127
9.5Updating Intra-zonal Distances
This code filters the distPair dataframe to exclude distances of zero (indicating the same hexagon), and then provides a statistical summary of the remaining non-zero distances.
%>%
distPair filter(dist > 0) %>%
summary()
Var1 Var2 dist
Min. : 393 Min. : 393 Min. : 433
1st Qu.:3694 1st Qu.:3694 1st Qu.: 7949
Median :5474 Median :5474 Median :12933
Mean :5236 Mean :5236 Mean :13705
3rd Qu.:6837 3rd Qu.:6837 3rd Qu.:18407
Max. :9988 Max. :9988 Max. :44478
We then replace the distance of 0 by 200 which would not affect the minimum distance that is 433.
$dist <- ifelse(distPair$dist == 0,
distPair200, distPair$dist)
Let’s check the statistical summary of distPair again.
%>%
distPair summary()
Var1 Var2 dist
Min. : 393 Min. : 393 Min. : 200
1st Qu.:3694 1st Qu.:3694 1st Qu.: 7949
Median :5474 Median :5474 Median :12933
Mean :5236 Mean :5236 Mean :13698
3rd Qu.:6837 3rd Qu.:6837 3rd Qu.:18407
Max. :9988 Max. :9988 Max. :44478
Rename the Var1 and Var2 as orig and dest respectively which are short for origin and destination.
<- distPair %>%
distPair rename(orig = Var1,
dest = Var2)
Export and save the distPair in rds format.
write_rds(distPair, "data/rds/distPair.rds")
10.Creating Complete Data for Spatial Interaction Modeling
This code converts the ORIGIN_HEX and DESTIN_HEX columns in the weekday_afternoon_od1 dataframe, as well as the orig and dest columns in the distPair dataframe, into factors. This conversion is essential for spatial interaction modeling, as it ensures that these columns, representing hexagon identifiers, are treated as categorical variables rather than numeric values.
$ORIGIN_HEX <- as.factor(weekday_afternoon_od1$ORIGIN_HEX)
weekday_afternoon_od1$DESTIN_HEX <- as.factor(weekday_afternoon_od1$DESTIN_HEX)
weekday_afternoon_od1$orig <- as.factor(distPair$orig)
distPair$dest <- as.factor(distPair$dest) distPair
The code below adds distance information to each origin-destination pair in the weekday_afternoon_od1 data.
<- weekday_afternoon_od1 %>%
weekday_afternoon_od2 left_join (distPair,
by = c("ORIGIN_HEX" = "orig",
"DESTIN_HEX" = "dest"))
The code converts the hex_grid_sf simple features (sf) object into a regular dataframe named hex_grid_df. It then selects specific columns related to various counts (like bus stops, businesses, schools, financial services, etc.) and the hexagon ID (hex_id).
<- as.data.frame(hex_grid_sf) %>%
hex_grid_df select(hex_id, bus_stop_count, business_count, school_count, finserv_count,
%>%
entertn_count, FB_count, lere_count, retail_count, trainexits_count, residential_count) mutate(hex_id = as.character(hex_id))
origin_factors is created by selecting relevant columns from hex_grid_df that represent factors at the origin hexagons (like bus stop count, business count, etc.).
<- hex_grid_df %>%
origin_factors select(hex_id, bus_stop_count, business_count, school_count, finserv_count)
<- weekday_afternoon_od2 %>%
weekday_afternoon_od2 mutate(ORIGIN_HEX = as.character(ORIGIN_HEX),
DESTIN_HEX = as.character(DESTIN_HEX))
This join adds the origin-specific factors to each row based on the origin hexagon ID, enriching the dataset with contextual information about the origin locations.
<- weekday_afternoon_od2 %>%
weekday_afternoon_od2_with_origin left_join(origin_factors, by = c("ORIGIN_HEX" = "hex_id"))
destin_factors is created by selecting columns from hex_grid_df that represent factors at destination hexagons, such as counts of entertainment venues, food and beverage outlets, leisure and recreation spots, retail locations, train exits, and residential units.
<- hex_grid_df %>%
destin_factors select(hex_id, entertn_count, FB_count, lere_count, retail_count, trainexits_count, residential_count)
This step adds destination-specific contextual information to each row in the dataset, based on the destination hexagon ID, thus completing the dataset with both origin and destination factors
<- weekday_afternoon_od2_with_origin %>%
weekday_afternoon_od2_complete left_join(destin_factors, by = c("DESTIN_HEX" = "hex_id"))
glimpse(weekday_afternoon_od2_complete)
Rows: 161,671
Columns: 14
Groups: ORIGIN_HEX [1,808]
$ ORIGIN_HEX <chr> "393", "393", "393", "393", "393", "393", "393"…
$ DESTIN_HEX <chr> "535", "585", "723", "770", "779", "824", "827"…
$ WEEKDAY_AFTERNOON_PEAK <dbl> 3, 34, 182, 1, 1, 18, 6, 145, 2, 16, 250, 23, 2…
$ dist <dbl> 750.000, 3122.499, 1561.249, 1887.459, 7697.402…
$ bus_stop_count <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,…
$ business_count <int> 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 0, 0, 0, 0,…
$ school_count <int> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,…
$ finserv_count <int> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,…
$ entertn_count <int> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,…
$ FB_count <int> 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0,…
$ lere_count <int> 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0,…
$ retail_count <int> 0, 1, 0, 0, 0, 0, 3, 0, 2, 0, 3, 9, 2, 1, 0, 0,…
$ trainexits_count <int> 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0,…
$ residential_count <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,…
Export the complete dataset and name it as SIM_data for later use.
write_rds(weekday_afternoon_od2_complete, "data/rds/SIM_data.rds")
rm(business, busstop, busstop_hex, busstop_mpsz, destin_factors, dist, distPair, entertn, FB, finserv, hdb, hex_grid_df, hex_grid_sf, hex_grid_sp, lere, mpsz, origin_factors, residential, retail, schools, trainexits, weekday_afternoon_flowLine, weekday_afternoon_od, weekday_afternoon_od1, weekday_afternoon_od2, weekday_afternoon_od2_complete, weekday_afternoon_od2_with_origin, hex_names)
11.Calibrating Spatial Interaction Models
11.1Importing the Modelling Data
The first step to calibrate Spatial Interaction Models is importing the modelling data by using the code chunk below.
<- read_rds("data/rds/SIM_data.rds") SIM_data
11.2Visualising the Dependent Variable
After plotting the distribution of dependent variable, the bus travel volume during weekday afternoon peak, it’s obvious that the distribution is highly skewed and not resemble bell shape or also known as normal distribution.
ggplot(data = SIM_data, aes(x = WEEKDAY_AFTERNOON_PEAK)) +
geom_histogram(binwidth = 100) +
xlab("Volume of Weekday Afternoon Peak") +
ylab("Count") +
ggtitle("Distribution of Weekday Afternoon Peak Volumes")
Next, let us visualise the relation between the dependent variable and one of the key independent variable in Spatial Interaction Model, namely distance.
ggplot(data = SIM_data, aes(x = dist, y = WEEKDAY_AFTERNOON_PEAK)) +
geom_point(alpha = 0.5) +
geom_smooth(method = "lm", se = FALSE) +
xlab("Distance Between Hexagons") +
ylab("Volume of Weekday Afternoon Peak") +
ggtitle("Relationship Between Distance and Weekday Afternoon Peak Volume")
Notice that their relationship hardly resemble linear relationship.
On the other hand, if we plot the scatter plot by using the log transformed version of both variables, we can see that their relationship is more resemble linear relationship.
ggplot(data = SIM_data, aes(x = log(dist), y = log(WEEKDAY_AFTERNOON_PEAK))) +
geom_point(alpha = 0.5) +
geom_smooth(method = "lm", se = FALSE, color = "lightblue") +
xlab("Log of Distance Between Hexagons") +
ylab("Log of Volume of Weekday Afternoon Peak") +
ggtitle("Log-Log Relationship Between Distance and Volume of Weekday Afternoon Peak") +
theme_minimal()
11.3Checking and Replacing Variables with Zero Values
Since Poisson Regression is based of log and log 0 is undefined, it is important for us to ensure that no 0 values in the explanatory variables.
In the code chunk below, summary()
is used to compute the summary statistics of all variables in SIM_data data frame.
summary(SIM_data)
ORIGIN_HEX DESTIN_HEX WEEKDAY_AFTERNOON_PEAK dist
Length:161671 Length:161671 Min. : 1.0 Min. : 433
Class :character Class :character 1st Qu.: 4.0 1st Qu.: 2411
Mode :character Mode :character Median : 18.0 Median : 4684
Mean : 148.4 Mean : 5658
3rd Qu.: 73.0 3rd Qu.: 8020
Max. :59391.0 Max. :25159
bus_stop_count business_count school_count finserv_count
Min. : 1.000 Min. : 0.000 Min. :0.0000 Min. : 0.000
1st Qu.: 2.000 1st Qu.: 0.000 1st Qu.:0.0000 1st Qu.: 0.000
Median : 3.000 Median : 0.000 Median :0.0000 Median : 1.000
Mean : 3.401 Mean : 2.556 Mean :0.1806 Mean : 3.944
3rd Qu.: 4.000 3rd Qu.: 2.000 3rd Qu.:0.0000 3rd Qu.: 4.000
Max. :13.000 Max. :60.000 Max. :4.0000 Max. :91.000
entertn_count FB_count lere_count retail_count
Min. :0.0000 Min. : 0.000 Min. : 0.0000 Min. : 0.00
1st Qu.:0.0000 1st Qu.: 0.000 1st Qu.: 0.0000 1st Qu.: 2.00
Median :0.0000 Median : 0.000 Median : 0.0000 Median : 7.00
Mean :0.1352 Mean : 2.135 Mean : 0.8934 Mean : 38.84
3rd Qu.:0.0000 3rd Qu.: 1.000 3rd Qu.: 1.0000 3rd Qu.: 31.00
Max. :8.0000 Max. :71.000 Max. :26.0000 Max. :986.00
trainexits_count residential_count
Min. :0.0000 Min. : 0.0
1st Qu.:0.0000 1st Qu.: 0.0
Median :0.0000 Median : 219.0
Mean :0.6436 Mean : 674.6
3rd Qu.:0.0000 3rd Qu.:1264.0
Max. :9.0000 Max. :3531.0
After knowing variables with 0 values, we should use the code below to replace all 0 values to 0.99.
$business_count <- ifelse(
SIM_data$business_count == 0,
SIM_data0.99, SIM_data$business_count)
$school_count <- ifelse(
SIM_data$school_count == 0,
SIM_data0.99, SIM_data$school_count)
$finserv_count <- ifelse(
SIM_data$finserv_count == 0,
SIM_data0.99, SIM_data$finserv_count)
$entertn_count <- ifelse(
SIM_data$entertn_count == 0,
SIM_data0.99, SIM_data$entertn_count)
$FB_count <- ifelse(
SIM_data$FB_count == 0,
SIM_data0.99, SIM_data$FB_count)
$lere_count <- ifelse(
SIM_data$lere_count == 0,
SIM_data0.99, SIM_data$lere_count)
$retail_count <- ifelse(
SIM_data$retail_count == 0,
SIM_data0.99, SIM_data$retail_count)
$trainexits_count <- ifelse(
SIM_data$trainexits_count == 0,
SIM_data0.99, SIM_data$trainexits_count)
$residential_count <- ifelse(
SIM_data$residential_count == 0,
SIM_data0.99, SIM_data$residential_count)
Let’s run summary()
again for double check.
summary(SIM_data)
ORIGIN_HEX DESTIN_HEX WEEKDAY_AFTERNOON_PEAK dist
Length:161671 Length:161671 Min. : 1.0 Min. : 433
Class :character Class :character 1st Qu.: 4.0 1st Qu.: 2411
Mode :character Mode :character Median : 18.0 Median : 4684
Mean : 148.4 Mean : 5658
3rd Qu.: 73.0 3rd Qu.: 8020
Max. :59391.0 Max. :25159
bus_stop_count business_count school_count finserv_count
Min. : 1.000 Min. : 0.990 Min. :0.990 Min. : 0.990
1st Qu.: 2.000 1st Qu.: 0.990 1st Qu.:0.990 1st Qu.: 0.990
Median : 3.000 Median : 0.990 Median :0.990 Median : 1.000
Mean : 3.401 Mean : 3.138 Mean :1.019 Mean : 4.391
3rd Qu.: 4.000 3rd Qu.: 2.000 3rd Qu.:0.990 3rd Qu.: 4.000
Max. :13.000 Max. :60.000 Max. :4.000 Max. :91.000
entertn_count FB_count lere_count retail_count
Min. :0.990 Min. : 0.990 Min. : 0.990 Min. : 0.99
1st Qu.:0.990 1st Qu.: 0.990 1st Qu.: 0.990 1st Qu.: 2.00
Median :0.990 Median : 0.990 Median : 0.990 Median : 7.00
Mean :1.045 Mean : 2.862 Mean : 1.539 Mean : 38.99
3rd Qu.:0.990 3rd Qu.: 1.000 3rd Qu.: 1.000 3rd Qu.: 31.00
Max. :8.000 Max. :71.000 Max. :26.000 Max. :986.00
trainexits_count residential_count
Min. :0.990 Min. : 0.99
1st Qu.:0.990 1st Qu.: 0.99
Median :0.990 Median : 219.00
Mean :1.399 Mean : 675.02
3rd Qu.:0.990 3rd Qu.:1264.00
Max. :9.000 Max. :3531.00
11.4Unconstrained Spatial Interaction Model
The model is “unconstrained” because it doesn’t impose any limitations on the total outflow from an origin or the total inflow to a destination, allowing them to vary freely based on the underlying variables.
The code chunk used to calibrate to model is shown as below. Specifically, we should export and save uncSIM to ensure reproducibility as it commonly takes long to run for large dataset.
<- glm(formula = WEEKDAY_AFTERNOON_PEAK ~
uncSIM log(bus_stop_count) +
log(business_count) +
log(school_count) +
log(finserv_count) +
log(entertn_count) +
log(FB_count) +
log(lere_count) +
log(retail_count) +
log(trainexits_count) +
log(residential_count) +
log(dist),
family = poisson(link = "log"),
data = SIM_data,
na.action = na.exclude)
write_rds(uncSIM, "data/rds/uncSIM.rds")
<- read_rds("data/rds/uncSIM.rds")
uncSIM uncSIM
Call: glm(formula = WEEKDAY_AFTERNOON_PEAK ~ log(bus_stop_count) +
log(business_count) + log(school_count) + log(finserv_count) +
log(entertn_count) + log(FB_count) + log(lere_count) + log(retail_count) +
log(trainexits_count) + log(residential_count) + log(dist),
family = poisson(link = "log"), data = SIM_data, na.action = na.exclude)
Coefficients:
(Intercept) log(bus_stop_count) log(business_count)
11.67689 0.40019 -0.06794
log(school_count) log(finserv_count) log(entertn_count)
-0.31202 0.42704 0.05788
log(FB_count) log(lere_count) log(retail_count)
-0.17995 -0.10079 0.05820
log(trainexits_count) log(residential_count) log(dist)
0.69347 0.12209 -1.04916
Degrees of Freedom: 161670 Total (i.e. Null); 161659 Residual
Null Deviance: 96290000
Residual Deviance: 59350000 AIC: 60130000
11.5R-squared Function
The provided R function CalcRSquared
calculates the coefficient of determination, commonly known as R-squared (R²), to assess the goodness of fit for a statistical model.
Inside the function, it computes the correlation coefficient r between the observed and estimated values, then squares this value to obtain R².
<- function(observed,estimated){
CalcRSquared <- cor(observed,estimated)
r <- r^2
R2
R2 }
Next, we will compute the R-squared of the unconstrained SIM by using the code chunk below.
CalcRSquared(uncSIM$data$WEEKDAY_AFTERNOON_PEAK, uncSIM$fitted.values)
[1] 0.1063576
The function r2_mcfadden
calculates McFadden’s R-squared for the provided uncSIM model, which is the unconstrained model in this context. McFadden’s R-squared is a measure of goodness of fit for logistic regression models and is interpreted as the proportion of the log likelihood explained by the model. Unlike the traditional R-squared, McFadden’s R-squared typically provides smaller values; values between 0.2 to 0.4 can indicate a good fit.
r2_mcfadden(uncSIM)
# R2 for Generalized Linear Regression
R2: 0.381
adj. R2: 0.381
11.6Origin Constrained Spatial Interaction Model
The origin (production) constrained model predicts flows from origins to various destinations while ensuring that the sum of the flows from each origin matches the observed total outflows for that origin.
The code chunk below is adjusted accordingly:
<- glm(formula = WEEKDAY_AFTERNOON_PEAK ~
orcSIM +
ORIGIN_HEX log(entertn_count) +
log(FB_count) +
log(lere_count) +
log(retail_count) +
log(trainexits_count) +
log(residential_count) +
log(dist),
family = poisson(link = "log"),
data = SIM_data,
na.action = na.exclude)
write_rds(orcSIM, "data/rds/orcSIM.rds")
<- read_rds("data/rds/orcSIM.rds")
orcSIM orcSIM
Call: glm(formula = WEEKDAY_AFTERNOON_PEAK ~ ORIGIN_HEX + log(entertn_count) +
log(FB_count) + log(lere_count) + log(retail_count) + log(trainexits_count) +
log(residential_count) + log(dist), family = poisson(link = "log"),
data = SIM_data, na.action = na.exclude)
Coefficients:
(Intercept) ORIGIN_HEX1012 ORIGIN_HEX1013
12.2146119 -1.1232728 0.0834191
ORIGIN_HEX1014 ORIGIN_HEX1058 ORIGIN_HEX1059
0.6124842 -3.6957314 -0.6714203
ORIGIN_HEX1060 ORIGIN_HEX1061 ORIGIN_HEX1104
-0.5027015 -0.2213456 1.3164351
ORIGIN_HEX1106 ORIGIN_HEX1107 ORIGIN_HEX1108
0.4673144 1.2099413 0.1395859
ORIGIN_HEX1152 ORIGIN_HEX1153 ORIGIN_HEX1154
-1.0968668 -0.5082854 0.8594057
ORIGIN_HEX1199 ORIGIN_HEX1200 ORIGIN_HEX1201
-0.6125329 0.1508162 0.5123503
ORIGIN_HEX1202 ORIGIN_HEX1244 ORIGIN_HEX1245
0.3357323 1.3788573 0.6675282
ORIGIN_HEX1246 ORIGIN_HEX1247 ORIGIN_HEX1291
-0.3714249 -0.4101895 1.6401911
ORIGIN_HEX1292 ORIGIN_HEX1293 ORIGIN_HEX1295
1.2503401 1.5477108 0.2113326
ORIGIN_HEX1338 ORIGIN_HEX1339 ORIGIN_HEX1340
1.6483118 -0.2701012 -0.0671674
ORIGIN_HEX1341 ORIGIN_HEX1385 ORIGIN_HEX1386
0.6648272 0.3461467 -1.3002130
ORIGIN_HEX1387 ORIGIN_HEX1388 ORIGIN_HEX1433
0.5593144 -1.5967428 1.3470366
ORIGIN_HEX1434 ORIGIN_HEX1479 ORIGIN_HEX1480
-1.1888456 -0.0513426 1.5276145
ORIGIN_HEX1481 ORIGIN_HEX1525 ORIGIN_HEX1526
0.6237632 1.5438707 -0.9104852
ORIGIN_HEX1527 ORIGIN_HEX1528 ORIGIN_HEX1529
1.2066114 0.8178755 1.1631925
ORIGIN_HEX1573 ORIGIN_HEX1574 ORIGIN_HEX1575
0.1021890 -1.6188279 1.4591288
ORIGIN_HEX1619 ORIGIN_HEX1621 ORIGIN_HEX1622
0.9872447 2.6350589 0.1417837
ORIGIN_HEX1623 ORIGIN_HEX1666 ORIGIN_HEX1668
1.9846656 1.1502891 0.4249987
ORIGIN_HEX1669 ORIGIN_HEX1670 ORIGIN_HEX1671
1.0466328 0.8519089 -1.3363757
ORIGIN_HEX1715 ORIGIN_HEX1717 ORIGIN_HEX1718
1.0875148 -0.4159235 2.0813279
ORIGIN_HEX1761 ORIGIN_HEX1762 ORIGIN_HEX1763
0.7785746 1.2993884 2.3826871
ORIGIN_HEX1764 ORIGIN_HEX1765 ORIGIN_HEX1768
-3.3052426 -2.4649452 -0.5687006
ORIGIN_HEX1808 ORIGIN_HEX1809 ORIGIN_HEX1810
0.8247703 0.5879864 1.6827475
ORIGIN_HEX1811 ORIGIN_HEX1812 ORIGIN_HEX1814
-1.2049275 -1.2436807 1.2992878
ORIGIN_HEX1815 ORIGIN_HEX1855 ORIGIN_HEX1856
-0.6022784 1.2201632 -0.6488613
ORIGIN_HEX1857 ORIGIN_HEX1858 ORIGIN_HEX1859
1.3868157 1.6168154 1.5906235
ORIGIN_HEX1861 ORIGIN_HEX1862 ORIGIN_HEX1903
1.6875438 2.5260569 -0.9773752
ORIGIN_HEX1904 ORIGIN_HEX1905 ORIGIN_HEX1906
1.1607129 -1.6120253 -1.2186386
ORIGIN_HEX1907 ORIGIN_HEX1909 ORIGIN_HEX1950
-0.1349058 0.2826431 -2.3107875
ORIGIN_HEX1952 ORIGIN_HEX1953 ORIGIN_HEX1955
1.7654787 -0.6232722 2.0091364
ORIGIN_HEX1956 ORIGIN_HEX1957 ORIGIN_HEX1996
0.2970540 -0.3343039 0.3600461
ORIGIN_HEX1997 ORIGIN_HEX1998 ORIGIN_HEX1999
-0.0442811 1.7923203 0.2805291
ORIGIN_HEX2000 ORIGIN_HEX2003 ORIGIN_HEX2046
-0.7633798 -0.0990055 -0.3938473
ORIGIN_HEX2047 ORIGIN_HEX2049 ORIGIN_HEX2050
1.1862402 0.8174522 -0.1415366
ORIGIN_HEX2051 ORIGIN_HEX2090 ORIGIN_HEX2092
1.2559151 -0.2674990 1.8823655
ORIGIN_HEX2093 ORIGIN_HEX2094 ORIGIN_HEX2095
0.1352920 -0.4729770 -0.0751354
ORIGIN_HEX2096 ORIGIN_HEX2139 ORIGIN_HEX2140
-1.1432896 -2.4592280 1.6702654
ORIGIN_HEX2141 ORIGIN_HEX2142 ORIGIN_HEX2143
-0.0843711 -0.1356914 0.7089135
ORIGIN_HEX2145 ORIGIN_HEX2146 ORIGIN_HEX2184
1.3588908 -1.3799040 0.0931636
ORIGIN_HEX2187 ORIGIN_HEX2189 ORIGIN_HEX2190
-0.6736008 -1.6585222 0.1304956
ORIGIN_HEX2192 ORIGIN_HEX2193 ORIGIN_HEX2194
-1.1777504 0.9474195 0.0004905
ORIGIN_HEX2232 ORIGIN_HEX2233 ORIGIN_HEX2234
0.2344905 1.5635186 1.0494823
ORIGIN_HEX2235 ORIGIN_HEX2236 ORIGIN_HEX2237
0.4438395 -0.3809052 0.2469121
ORIGIN_HEX2238 ORIGIN_HEX2239 ORIGIN_HEX2241
0.6055828 0.4171301 -1.8325487
ORIGIN_HEX2242 ORIGIN_HEX2278 ORIGIN_HEX2279
-0.4236908 -0.2278623 0.6966419
ORIGIN_HEX2280 ORIGIN_HEX2281 ORIGIN_HEX2282
1.4514008 0.5754270 0.3590999
ORIGIN_HEX2283 ORIGIN_HEX2284 ORIGIN_HEX2288
1.5845045 -0.0734321 0.1675462
ORIGIN_HEX2289 ORIGIN_HEX2290 ORIGIN_HEX2326
-1.9426846 -3.6744967 -0.8393572
ORIGIN_HEX2327 ORIGIN_HEX2328 ORIGIN_HEX2329
1.1992830 -1.1457234 0.5989836
ORIGIN_HEX2330 ORIGIN_HEX2331 ORIGIN_HEX2332
-0.1568768 0.6016083 0.7699250
ORIGIN_HEX2337 ORIGIN_HEX2340 ORIGIN_HEX2341
-1.2387776 -1.0026606 -3.1148913
ORIGIN_HEX2342 ORIGIN_HEX2372 ORIGIN_HEX2376
-1.2525360 0.4220926 -2.1631551
ORIGIN_HEX2377 ORIGIN_HEX2378 ORIGIN_HEX2379
0.2903871 -0.0614725 0.6377149
ORIGIN_HEX2382 ORIGIN_HEX2386 ORIGIN_HEX2387
-3.1910650 -1.4074848 -5.2715931
ORIGIN_HEX2389 ORIGIN_HEX2421 ORIGIN_HEX2422
-0.1426100 0.5355638 1.6328897
ORIGIN_HEX2423 ORIGIN_HEX2424 ORIGIN_HEX2425
0.4999534 -2.2434270 -0.4138955
ORIGIN_HEX2426 ORIGIN_HEX2436 ORIGIN_HEX2437
-0.0189230 1.0224484 -1.7137900
ORIGIN_HEX2466 ORIGIN_HEX2470 ORIGIN_HEX2471
-0.3324475 0.7160412 3.1010085
ORIGIN_HEX2472 ORIGIN_HEX2473 ORIGIN_HEX2476
0.2559324 1.0153091 -3.1315670
ORIGIN_HEX2484 ORIGIN_HEX2515 ORIGIN_HEX2516
-0.9226008 0.0830500 0.4198018
ORIGIN_HEX2518 ORIGIN_HEX2519 ORIGIN_HEX2520
-2.6558177 -0.4908226 -1.1617722
ORIGIN_HEX2532 ORIGIN_HEX2533 ORIGIN_HEX2534
-2.4978366 -0.6334217 -0.1609490
ORIGIN_HEX2562 ORIGIN_HEX2563 ORIGIN_HEX2564
-0.0182499 0.8234200 1.3195002
ORIGIN_HEX2565 ORIGIN_HEX2566 ORIGIN_HEX2567
-1.8830530 -0.5882415 -0.4802982
ORIGIN_HEX2570 ORIGIN_HEX2579 ORIGIN_HEX2609
-4.2327829 -3.8214580 -0.0907136
ORIGIN_HEX2611 ORIGIN_HEX2612 ORIGIN_HEX2613
0.3898628 0.3640899 -0.5721390
ORIGIN_HEX2614 ORIGIN_HEX2655 ORIGIN_HEX2657
0.7980937 -0.5860837 -0.3887114
ORIGIN_HEX2658 ORIGIN_HEX2660 ORIGIN_HEX2661
1.3442512 0.7700844 -0.7084062
ORIGIN_HEX2664 ORIGIN_HEX2703 ORIGIN_HEX2705
-0.5157909 -2.3180451 -0.4601412
ORIGIN_HEX2706 ORIGIN_HEX2707 ORIGIN_HEX2708
0.5500602 -0.4117198 -0.8756490
ORIGIN_HEX2712 ORIGIN_HEX2752 ORIGIN_HEX2753
0.4656846 -0.1345038 -0.0942630
ORIGIN_HEX2754 ORIGIN_HEX2755 ORIGIN_HEX2758
-0.7419777 0.1006397 -0.0216992
ORIGIN_HEX2797 ORIGIN_HEX2798 ORIGIN_HEX2799
0.7094211 -1.0773740 -0.2653153
ORIGIN_HEX2800 ORIGIN_HEX2802 ORIGIN_HEX2806
-0.7333003 0.8382372 0.8390265
ORIGIN_HEX2843 ORIGIN_HEX2844 ORIGIN_HEX2845
0.9410683 -0.1103087 0.6087839
ORIGIN_HEX2846 ORIGIN_HEX2847 ORIGIN_HEX2848
-0.5875411 0.1872471 2.4708727
ORIGIN_HEX2849 ORIGIN_HEX2891 ORIGIN_HEX2893
-0.3609997 0.9092353 0.3249502
ORIGIN_HEX2894 ORIGIN_HEX2895 ORIGIN_HEX2896
0.6591408 -0.7842087 -1.0554792
ORIGIN_HEX2897 ORIGIN_HEX2900 ORIGIN_HEX2937
-0.6836332 0.9182720 0.3773590
ORIGIN_HEX2939 ORIGIN_HEX2940 ORIGIN_HEX2941
0.4129201 0.2143413 -0.7182327
ORIGIN_HEX2942 ORIGIN_HEX2943 ORIGIN_HEX2987
-1.0721704 0.7460494 -0.8310831
ORIGIN_HEX2988 ORIGIN_HEX2990 ORIGIN_HEX2994
-0.6971969 -0.1935696 -2.3405647
ORIGIN_HEX3031 ORIGIN_HEX3033 ORIGIN_HEX3036
0.6062849 -0.3812143 -0.9961095
ORIGIN_HEX3084 ORIGIN_HEX3125 ORIGIN_HEX3129
0.2732330 -0.2696515 -2.7185448
ORIGIN_HEX3130 ORIGIN_HEX3135 ORIGIN_HEX3172
0.3905817 -1.2462760 1.2958032
ORIGIN_HEX3173 ORIGIN_HEX3176 ORIGIN_HEX3177
0.9492186 -2.9362429 0.6116500
ORIGIN_HEX3182 ORIGIN_HEX3218 ORIGIN_HEX3220
-1.0390481 0.2216831 0.4569443
ORIGIN_HEX3221 ORIGIN_HEX3223 ORIGIN_HEX3224
-3.9730883 -0.9420276 0.4114902
ORIGIN_HEX3225 ORIGIN_HEX3229 ORIGIN_HEX3238
-1.3968761 0.5142262 -0.9948517
ORIGIN_HEX3266 ORIGIN_HEX3268 ORIGIN_HEX3269
-0.0214121 0.8779738 -1.5961636
ORIGIN_HEX3270 ORIGIN_HEX3271 ORIGIN_HEX3272
0.3971190 0.1776396 -1.3151783
ORIGIN_HEX3273 ORIGIN_HEX3276 ORIGIN_HEX3277
0.6430561 0.2161216 -0.0136848
ORIGIN_HEX3312 ORIGIN_HEX3314 ORIGIN_HEX3316
0.2882789 -2.6345576 0.0599729
ORIGIN_HEX3317 ORIGIN_HEX3318 ORIGIN_HEX3319
-0.6876372 -0.8603021 -0.1459794
ORIGIN_HEX3320 ORIGIN_HEX3322 ORIGIN_HEX3323
0.4940919 -1.6540433 0.3697562
ORIGIN_HEX3325 ORIGIN_HEX3362 ORIGIN_HEX3363
-1.7356942 -0.1762301 -1.5297922
ORIGIN_HEX3364 ORIGIN_HEX3365 ORIGIN_HEX3366
1.9158610 0.2627902 0.3058646
ORIGIN_HEX3367 ORIGIN_HEX3368 ORIGIN_HEX3370
0.1188548 -0.2288376 0.0830823
ORIGIN_HEX3371 ORIGIN_HEX3372 ORIGIN_HEX3406
-0.2711702 -1.4751295 -1.1132599
ORIGIN_HEX3408 ORIGIN_HEX3409 ORIGIN_HEX3410
-1.2127302 0.2939776 -0.1290954
ORIGIN_HEX3411 ORIGIN_HEX3412 ORIGIN_HEX3413
-0.3270765 -0.2095660 -0.0454839
ORIGIN_HEX3414 ORIGIN_HEX3415 ORIGIN_HEX3416
-0.5022096 -0.6678825 -0.6082427
ORIGIN_HEX3417 ORIGIN_HEX3418 ORIGIN_HEX3419
0.1264543 2.6952521 0.5780081
ORIGIN_HEX3426 ORIGIN_HEX3453 ORIGIN_HEX3456
-0.4380904 -0.6501199 0.1226379
ORIGIN_HEX3457 ORIGIN_HEX3458 ORIGIN_HEX3459
-1.2418845 0.8096226 -0.5891016
ORIGIN_HEX3460 ORIGIN_HEX3461 ORIGIN_HEX3462
0.2411234 -2.6615380 -0.3067930
ORIGIN_HEX3463 ORIGIN_HEX3464 ORIGIN_HEX3465
-1.9692455 0.5448568 -2.4696135
ORIGIN_HEX3466 ORIGIN_HEX3467 ORIGIN_HEX3468
-1.3892184 -0.5422293 -0.2770123
ORIGIN_HEX3472 ORIGIN_HEX3473 ORIGIN_HEX3499
-0.8606317 -0.3139224 0.1108829
ORIGIN_HEX3502 ORIGIN_HEX3503 ORIGIN_HEX3504
-0.2826157 0.0642999 0.7549507
ORIGIN_HEX3505 ORIGIN_HEX3506 ORIGIN_HEX3507
0.0318715 0.0744326 -0.7701441
ORIGIN_HEX3508 ORIGIN_HEX3509 ORIGIN_HEX3511
-0.3879061 -0.4118409 -0.8794052
ORIGIN_HEX3512 ORIGIN_HEX3513 ORIGIN_HEX3514
-2.6736844 -0.1655829 2.2431147
ORIGIN_HEX3518 ORIGIN_HEX3519 ORIGIN_HEX3547
-0.4201076 -0.6117609 1.0466494
ORIGIN_HEX3549 ORIGIN_HEX3551 ORIGIN_HEX3552
1.3705956 0.9941496 0.4869899
ORIGIN_HEX3554 ORIGIN_HEX3555 ORIGIN_HEX3556
0.0806395 -1.1141682 -0.3676071
ORIGIN_HEX3557 ORIGIN_HEX3558 ORIGIN_HEX3559
0.0156517 -0.7604519 0.4635064
ORIGIN_HEX3561 ORIGIN_HEX3562 ORIGIN_HEX3564
-1.5767347 0.9065921 -0.7034696
ORIGIN_HEX3565 ORIGIN_HEX3593 ORIGIN_HEX3594
-0.4715006 0.5277139 0.4037082
ORIGIN_HEX3595 ORIGIN_HEX3599 ORIGIN_HEX3600
1.7788213 0.9491316 -1.0398979
ORIGIN_HEX3601 ORIGIN_HEX3602 ORIGIN_HEX3603
1.8794969 2.0793321 -0.3982916
ORIGIN_HEX3604 ORIGIN_HEX3605 ORIGIN_HEX3607
-0.0480712 -0.2266805 -0.1882790
ORIGIN_HEX3608 ORIGIN_HEX3610 ORIGIN_HEX3611
0.1387400 0.0013620 -1.4523176
ORIGIN_HEX3613 ORIGIN_HEX3641 ORIGIN_HEX3643
-0.6376790 -0.1783165 0.2462642
ORIGIN_HEX3644 ORIGIN_HEX3645 ORIGIN_HEX3647
0.1202794 0.7335480 0.8453207
ORIGIN_HEX3648 ORIGIN_HEX3649 ORIGIN_HEX3652
-0.4848099 -0.5811055 -0.8134454
ORIGIN_HEX3653 ORIGIN_HEX3654 ORIGIN_HEX3655
0.5942657 -1.5104633 -1.2307880
ORIGIN_HEX3656 ORIGIN_HEX3657 ORIGIN_HEX3658
-2.6634418 -1.0766408 -3.6929401
ORIGIN_HEX3661 ORIGIN_HEX3689 ORIGIN_HEX3691
0.6251063 0.2899308 -0.2528351
ORIGIN_HEX3692 ORIGIN_HEX3693 ORIGIN_HEX3694
0.0243562 1.7159539 0.7469658
ORIGIN_HEX3695 ORIGIN_HEX3699 ORIGIN_HEX3700
0.5407181 -0.5386721 -1.2935408
ORIGIN_HEX3701 ORIGIN_HEX3702 ORIGIN_HEX3703
-0.8630636 -0.7835742 1.0917171
ORIGIN_HEX3704 ORIGIN_HEX3705 ORIGIN_HEX3706
-1.7432516 -1.8526563 -1.7414090
ORIGIN_HEX3707 ORIGIN_HEX3736 ORIGIN_HEX3739
0.4085324 0.2667198 -0.2219285
ORIGIN_HEX3740 ORIGIN_HEX3741 ORIGIN_HEX3742
0.6286191 -1.1961332 0.3792087
ORIGIN_HEX3748 ORIGIN_HEX3750 ORIGIN_HEX3751
-2.0413223 0.3364379 0.8119677
ORIGIN_HEX3753 ORIGIN_HEX3754 ORIGIN_HEX3782
-0.5612480 -1.7883868 0.4098725
ORIGIN_HEX3783 ORIGIN_HEX3784 ORIGIN_HEX3785
0.5539454 0.0951283 -1.4018614
ORIGIN_HEX3786 ORIGIN_HEX3787 ORIGIN_HEX3788
0.1528408 1.4451281 -0.3731559
ORIGIN_HEX3789 ORIGIN_HEX3793 ORIGIN_HEX3794
-0.4007743 0.1987353 0.2177661
ORIGIN_HEX3798 ORIGIN_HEX3829 ORIGIN_HEX3830
-2.2894655 0.2572865 0.4055852
ORIGIN_HEX3831 ORIGIN_HEX3832 ORIGIN_HEX3836
-0.2110119 0.3401272 -1.3656452
ORIGIN_HEX3837 ORIGIN_HEX3839 ORIGIN_HEX3840
-0.1389450 0.1276391 -2.9407318
ORIGIN_HEX3841 ORIGIN_HEX3845 ORIGIN_HEX3847
0.1898643 -0.2901790 2.4623759
ORIGIN_HEX3848 ORIGIN_HEX3875 ORIGIN_HEX3876
-2.4690645 -0.7137543 1.4556358
ORIGIN_HEX3877 ORIGIN_HEX3878 ORIGIN_HEX3879
-0.0691601 1.5759185 1.0589654
ORIGIN_HEX3881 ORIGIN_HEX3882 ORIGIN_HEX3884
-1.6543990 -1.7953596 0.3577007
ORIGIN_HEX3886 ORIGIN_HEX3887 ORIGIN_HEX3888
-1.0413490 2.4440777 -1.1230682
ORIGIN_HEX3895 ORIGIN_HEX3922 ORIGIN_HEX3923
-0.5977376 -0.8445088 0.0710703
ORIGIN_HEX3924 ORIGIN_HEX3925 ORIGIN_HEX3926
-1.0483151 2.4867736 -0.7386350
ORIGIN_HEX393 ORIGIN_HEX3930 ORIGIN_HEX3932
0.0748725 -1.7744801 1.1018208
ORIGIN_HEX3933 ORIGIN_HEX3935 ORIGIN_HEX3936
-0.9648284 -0.0893677 -3.0244609
ORIGIN_HEX3939 ORIGIN_HEX3942 ORIGIN_HEX3943
0.1022912 0.1401115 -0.1844777
ORIGIN_HEX3968 ORIGIN_HEX3969 ORIGIN_HEX3971
-0.4696466 0.0833382 0.7844217
ORIGIN_HEX3972 ORIGIN_HEX3975 ORIGIN_HEX3976
-0.0416777 0.3218407 -1.0409843
ORIGIN_HEX3978 ORIGIN_HEX3979 ORIGIN_HEX3980
-0.6891089 -1.0035714 -1.1680470
ORIGIN_HEX3981 ORIGIN_HEX3982 ORIGIN_HEX3990
-0.7701033 -0.4207720 0.5927693
ORIGIN_HEX4016 ORIGIN_HEX4017 ORIGIN_HEX4018
0.4915454 0.9270405 0.0028628
ORIGIN_HEX4019 ORIGIN_HEX4020 ORIGIN_HEX4023
-0.9490341 0.8315889 -0.2382569
ORIGIN_HEX4024 ORIGIN_HEX4025 ORIGIN_HEX4026
-2.0325295 -0.8575712 0.5677617
ORIGIN_HEX4028 ORIGIN_HEX4029 ORIGIN_HEX4030
0.3419513 -0.6681086 0.1104157
ORIGIN_HEX4033 ORIGIN_HEX4038 ORIGIN_HEX4062
-1.1301590 1.2437649 -0.4575949
ORIGIN_HEX4063 ORIGIN_HEX4064 ORIGIN_HEX4065
1.5298839 0.9035267 0.2585552
ORIGIN_HEX4066 ORIGIN_HEX4067 ORIGIN_HEX4070
-1.0115249 -1.2693475 -0.6069382
ORIGIN_HEX4071 ORIGIN_HEX4073 ORIGIN_HEX4074
-1.4124999 -0.7113560 -1.7292197
ORIGIN_HEX4075 ORIGIN_HEX4076 ORIGIN_HEX4083
-0.1366129 0.1278359 -0.6594922
ORIGIN_HEX4084 ORIGIN_HEX4085 ORIGIN_HEX4109
0.7138679 2.7469544 -1.1726588
ORIGIN_HEX4111 ORIGIN_HEX4112 ORIGIN_HEX4113
1.0044166 0.6727876 -0.8966347
ORIGIN_HEX4114 ORIGIN_HEX4117 ORIGIN_HEX4118
-1.0568778 -0.3188047 -0.6173458
ORIGIN_HEX4122 ORIGIN_HEX4123 ORIGIN_HEX4124
1.1066930 -4.2334140 0.0766450
ORIGIN_HEX4127 ORIGIN_HEX4130 ORIGIN_HEX4131
-0.6515512 0.2748054 0.2327975
ORIGIN_HEX4132 ORIGIN_HEX4156 ORIGIN_HEX4157
0.0717452 0.8670919 0.7067986
ORIGIN_HEX4159 ORIGIN_HEX4161 ORIGIN_HEX4163
-0.8523118 -0.6667618 1.5347373
ORIGIN_HEX4167 ORIGIN_HEX4168 ORIGIN_HEX4169
-0.4026023 -0.7169239 0.7924499
ORIGIN_HEX4176 ORIGIN_HEX4177 ORIGIN_HEX4178
0.2175129 1.9535237 -0.4356635
ORIGIN_HEX4179 ORIGIN_HEX4203 ORIGIN_HEX4205
1.1336441 0.8448089 1.1427649
ORIGIN_HEX4206 ORIGIN_HEX4207 ORIGIN_HEX4208
-0.9641100 -0.5306770 -1.4764445
ORIGIN_HEX4209 ORIGIN_HEX4210 ORIGIN_HEX4211
1.9392917 -1.2146626 1.0985189
ORIGIN_HEX4215 ORIGIN_HEX4221 ORIGIN_HEX4224
-0.2230598 0.0427077 -0.5883114
ORIGIN_HEX4225 ORIGIN_HEX4226 ORIGIN_HEX4227
-0.1098440 0.4189462 -1.5981051
ORIGIN_HEX4250 ORIGIN_HEX4251 ORIGIN_HEX4253
0.2938777 1.3626196 1.4360010
ORIGIN_HEX4254 ORIGIN_HEX4256 ORIGIN_HEX4257
-1.7719632 1.1344056 0.5489833
ORIGIN_HEX4271 ORIGIN_HEX4272 ORIGIN_HEX4273
-0.2701127 0.4437224 -1.8319950
ORIGIN_HEX4297 ORIGIN_HEX4300 ORIGIN_HEX4301
-0.2428270 -0.3035801 -2.0092310
ORIGIN_HEX4302 ORIGIN_HEX4304 ORIGIN_HEX4315
-0.7302497 1.3496999 1.0804958
ORIGIN_HEX4318 ORIGIN_HEX4319 ORIGIN_HEX4320
-0.0786315 -0.6787471 0.1423980
ORIGIN_HEX4321 ORIGIN_HEX4343 ORIGIN_HEX4345
-1.1970252 1.0384419 0.1231324
ORIGIN_HEX4346 ORIGIN_HEX4347 ORIGIN_HEX4348
0.6527212 -2.5097038 -1.2240404
ORIGIN_HEX4351 ORIGIN_HEX4362 ORIGIN_HEX4365
0.1735633 -0.6331248 0.3002720
ORIGIN_HEX4390 ORIGIN_HEX4391 ORIGIN_HEX4392
-0.2491534 0.8302184 1.5276421
ORIGIN_HEX4393 ORIGIN_HEX4394 ORIGIN_HEX4395
0.2512644 0.4052076 -0.9134584
ORIGIN_HEX4398 ORIGIN_HEX4409 ORIGIN_HEX4412
-2.2807713 -1.9069375 -0.8290563
ORIGIN_HEX4413 ORIGIN_HEX4414 ORIGIN_HEX4415
2.2581956 0.4021137 1.5116376
ORIGIN_HEX4436 ORIGIN_HEX4437 ORIGIN_HEX4438
-1.6569120 -0.9332247 0.9998659
ORIGIN_HEX4439 ORIGIN_HEX444 ORIGIN_HEX4440
-0.0583607 0.9179085 -0.5903698
ORIGIN_HEX4441 ORIGIN_HEX4442 ORIGIN_HEX4459
-0.0431278 -0.7177773 0.6599907
ORIGIN_HEX4460 ORIGIN_HEX4484 ORIGIN_HEX4485
-0.2456783 -0.2552666 0.4626794
ORIGIN_HEX4486 ORIGIN_HEX4487 ORIGIN_HEX4488
0.6766800 -0.7499221 -0.3204420
ORIGIN_HEX4489 ORIGIN_HEX4490 ORIGIN_HEX4492
-1.9359725 -2.0670347 -0.3110848
ORIGIN_HEX4502 ORIGIN_HEX4506 ORIGIN_HEX4507
2.0761617 -0.1316404 3.0154802
ORIGIN_HEX4508 ORIGIN_HEX4509 ORIGIN_HEX4530
0.5863438 -0.1950519 -1.4991072
ORIGIN_HEX4532 ORIGIN_HEX4533 ORIGIN_HEX4534
0.8289788 -1.1164316 1.0187465
ORIGIN_HEX4535 ORIGIN_HEX4537 ORIGIN_HEX4538
-0.1396801 -1.8492945 0.1293437
ORIGIN_HEX4550 ORIGIN_HEX4552 ORIGIN_HEX4553
-3.1829062 -2.0568928 -0.0958945
ORIGIN_HEX4554 ORIGIN_HEX4556 ORIGIN_HEX4577
-0.4516703 0.9834023 1.1277522
ORIGIN_HEX4579 ORIGIN_HEX4580 ORIGIN_HEX4581
-0.1170111 0.4154702 -2.5388944
ORIGIN_HEX4582 ORIGIN_HEX4583 ORIGIN_HEX4584
0.1163012 -1.5678387 -2.0850725
ORIGIN_HEX4585 ORIGIN_HEX4586 ORIGIN_HEX4600
-2.4053577 -1.0163783 0.4404403
ORIGIN_HEX4601 ORIGIN_HEX4602 ORIGIN_HEX4603
-0.9158359 0.4964090 2.1993648
ORIGIN_HEX4624 ORIGIN_HEX4626 ORIGIN_HEX4627
-0.3276126 -0.6611859 -1.1667122
ORIGIN_HEX4628 ORIGIN_HEX4629 ORIGIN_HEX4631
-0.7056159 0.5782561 -1.0763714
ORIGIN_HEX4632 ORIGIN_HEX4646 ORIGIN_HEX4647
0.0309164 1.1384320 -0.4921844
ORIGIN_HEX4648 ORIGIN_HEX4649 ORIGIN_HEX4650
0.1375093 0.1844555 1.4054619
ORIGIN_HEX4671 ORIGIN_HEX4674 ORIGIN_HEX4675
1.1977782 -2.0231394 -1.8809919
ORIGIN_HEX4676 ORIGIN_HEX4679 ORIGIN_HEX4692
-0.4390560 -2.9193280 -0.0885256
ORIGIN_HEX4694 ORIGIN_HEX4695 ORIGIN_HEX4696
0.1493175 0.7173633 0.3607789
ORIGIN_HEX4698 ORIGIN_HEX4720 ORIGIN_HEX4721
0.2586793 -1.4997179 -1.5711952
ORIGIN_HEX4722 ORIGIN_HEX4726 ORIGIN_HEX4741
-1.8487937 0.4611392 0.2887125
ORIGIN_HEX4742 ORIGIN_HEX4743 ORIGIN_HEX4765
-0.6013605 0.9185906 1.3542253
ORIGIN_HEX4766 ORIGIN_HEX4768 ORIGIN_HEX4769
-0.4856415 -1.5085362 0.9774344
ORIGIN_HEX4770 ORIGIN_HEX4786 ORIGIN_HEX4788
-0.6323359 0.3229718 0.2485777
ORIGIN_HEX4789 ORIGIN_HEX4790 ORIGIN_HEX4791
0.1163901 -0.6037766 0.3374511
ORIGIN_HEX4792 ORIGIN_HEX4812 ORIGIN_HEX4813
1.3033238 0.7036884 0.4800434
ORIGIN_HEX4814 ORIGIN_HEX4815 ORIGIN_HEX4816
0.0482784 -0.4000774 -0.8305560
ORIGIN_HEX4817 ORIGIN_HEX4835 ORIGIN_HEX4836
-0.2564361 1.0646989 2.2852515
ORIGIN_HEX4837 ORIGIN_HEX4838 ORIGIN_HEX4839
0.1305504 1.2876663 0.4648260
ORIGIN_HEX4840 ORIGIN_HEX4859 ORIGIN_HEX4860
0.2958932 -0.8336096 -0.2435336
ORIGIN_HEX4861 ORIGIN_HEX4862 ORIGIN_HEX4863
0.7180845 0.3834421 -1.3360081
ORIGIN_HEX4864 ORIGIN_HEX4865 ORIGIN_HEX4867
-1.9461561 -0.6803788 0.3487888
ORIGIN_HEX488 ORIGIN_HEX4880 ORIGIN_HEX4883
-1.0073823 -3.2005963 -0.2027019
ORIGIN_HEX4884 ORIGIN_HEX4885 ORIGIN_HEX4886
-0.5311199 0.7480661 0.9519922
ORIGIN_HEX4887 ORIGIN_HEX490 ORIGIN_HEX4905
1.5657841 -0.1224911 -1.8594452
ORIGIN_HEX4906 ORIGIN_HEX4908 ORIGIN_HEX4909
-0.8082809 -0.4988047 0.1923000
ORIGIN_HEX491 ORIGIN_HEX4911 ORIGIN_HEX4912
-0.8754766 -1.1078365 0.6290147
ORIGIN_HEX4913 ORIGIN_HEX4925 ORIGIN_HEX4926
0.3432310 -2.3286146 -0.8330541
ORIGIN_HEX4930 ORIGIN_HEX4931 ORIGIN_HEX4932
0.9547572 -0.3198599 1.5563164
ORIGIN_HEX4933 ORIGIN_HEX4953 ORIGIN_HEX4954
1.0755858 -0.7300129 0.4288967
ORIGIN_HEX4955 ORIGIN_HEX4956 ORIGIN_HEX4958
0.5826706 -1.2629860 -1.8398635
ORIGIN_HEX4961 ORIGIN_HEX4974 ORIGIN_HEX4978
-0.4322568 -0.0674658 0.5014030
ORIGIN_HEX4981 ORIGIN_HEX4999 ORIGIN_HEX5000
-0.1026535 0.3156693 -0.1287390
ORIGIN_HEX5001 ORIGIN_HEX5002 ORIGIN_HEX5003
0.9625275 -0.1574627 -0.8459910
ORIGIN_HEX5006 ORIGIN_HEX5007 ORIGIN_HEX5019
-1.7485440 -0.0690165 -1.6600508
ORIGIN_HEX5025 ORIGIN_HEX5026 ORIGIN_HEX5027
0.1385077 1.9578184 0.6832036
ORIGIN_HEX5028 ORIGIN_HEX5047 ORIGIN_HEX5048
1.8870353 -0.6986773 -0.0225716
ORIGIN_HEX5049 ORIGIN_HEX5050 ORIGIN_HEX5052
0.1496031 0.1685063 -0.8473715
ORIGIN_HEX5054 ORIGIN_HEX5066 ORIGIN_HEX5072
-0.9016582 -1.9133421 0.4429268
ORIGIN_HEX5073 ORIGIN_HEX5075 ORIGIN_HEX5093
1.2231762 1.0300311 -0.9411685
ORIGIN_HEX5094 ORIGIN_HEX5095 ORIGIN_HEX5096
-1.6109128 0.2441028 -0.7828318
ORIGIN_HEX5097 ORIGIN_HEX5098 ORIGIN_HEX5101
-0.2391850 -1.3306288 -0.8116033
ORIGIN_HEX5102 ORIGIN_HEX5119 ORIGIN_HEX5121
-0.9830329 0.0270452 1.6374151
ORIGIN_HEX5140 ORIGIN_HEX5141 ORIGIN_HEX5142
-0.4929024 -1.0207084 0.5569119
ORIGIN_HEX5143 ORIGIN_HEX5144 ORIGIN_HEX5148
0.4101904 -0.2255175 0.4885398
ORIGIN_HEX5149 ORIGIN_HEX5160 ORIGIN_HEX5166
-0.6774419 -1.4673302 -0.2408940
ORIGIN_HEX5167 ORIGIN_HEX5168 ORIGIN_HEX5169
-0.9073670 0.3939647 0.2912148
ORIGIN_HEX5188 ORIGIN_HEX5189 ORIGIN_HEX5190
0.5010433 0.9029071 0.2164814
ORIGIN_HEX5191 ORIGIN_HEX5197 ORIGIN_HEX5205
-0.6998036 -2.0302916 -3.3355981
ORIGIN_HEX5206 ORIGIN_HEX5212 ORIGIN_HEX5213
0.9264520 -0.0649778 1.2438928
ORIGIN_HEX5214 ORIGIN_HEX5215 ORIGIN_HEX5234
0.3644288 0.0521071 1.2290275
ORIGIN_HEX5235 ORIGIN_HEX5236 ORIGIN_HEX5237
0.2980136 -0.2571337 -0.1026410
ORIGIN_HEX5239 ORIGIN_HEX5240 ORIGIN_HEX5242
-1.6918202 0.2910467 -0.6843586
ORIGIN_HEX5244 ORIGIN_HEX5252 ORIGIN_HEX5253
-1.7875716 -3.8202894 0.2880744
ORIGIN_HEX5254 ORIGIN_HEX5260 ORIGIN_HEX5261
0.9575132 -0.6237707 1.5867084
ORIGIN_HEX5262 ORIGIN_HEX5280 ORIGIN_HEX5281
-0.0447503 1.8570910 -0.8596261
ORIGIN_HEX5282 ORIGIN_HEX5283 ORIGIN_HEX5284
-0.1557818 0.5398201 -0.8173944
ORIGIN_HEX5286 ORIGIN_HEX5298 ORIGIN_HEX5301
-0.1707000 -1.3867430 -1.2307665
ORIGIN_HEX5307 ORIGIN_HEX5308 ORIGIN_HEX5309
0.8692931 0.2370042 -0.3377003
ORIGIN_HEX5328 ORIGIN_HEX5329 ORIGIN_HEX5330
0.9407734 0.1904828 0.6970446
ORIGIN_HEX5331 ORIGIN_HEX5333 ORIGIN_HEX5336
-0.4576693 -1.9472801 -1.4356335
ORIGIN_HEX5339 ORIGIN_HEX5349 ORIGIN_HEX535
-3.8073863 -1.7316262 1.3549044
ORIGIN_HEX5350 ORIGIN_HEX5354 ORIGIN_HEX5355
-0.7828862 -1.2828356 -0.4076706
ORIGIN_HEX5356 ORIGIN_HEX537 ORIGIN_HEX5375
-0.0120964 1.4463488 0.0536230
ORIGIN_HEX5377 ORIGIN_HEX5378 ORIGIN_HEX5379
-0.6481881 -0.8161785 -1.1400280
ORIGIN_HEX5380 ORIGIN_HEX5382 ORIGIN_HEX5383
-0.3146420 0.6543729 -2.6288930
ORIGIN_HEX5397 ORIGIN_HEX5398 ORIGIN_HEX5399
-1.4534270 -0.2191807 -0.2146468
ORIGIN_HEX540 ORIGIN_HEX5400 ORIGIN_HEX5401
-2.3375959 0.5581740 -2.4266339
ORIGIN_HEX5402 ORIGIN_HEX5403 ORIGIN_HEX5422
-1.2525717 -2.6564290 -1.5593023
ORIGIN_HEX5423 ORIGIN_HEX5424 ORIGIN_HEX5425
-0.9818015 0.0642190 1.6548557
ORIGIN_HEX5426 ORIGIN_HEX5428 ORIGIN_HEX5429
0.3031354 0.6435684 0.3305847
ORIGIN_HEX5430 ORIGIN_HEX5433 ORIGIN_HEX5436
0.8395716 -3.3540679 -1.0922930
ORIGIN_HEX5437 ORIGIN_HEX5438 ORIGIN_HEX5439
-1.3267418 -0.9805023 1.4109138
ORIGIN_HEX5442 ORIGIN_HEX5443 ORIGIN_HEX5445
-0.8312514 -2.8605339 0.2194472
ORIGIN_HEX5446 ORIGIN_HEX5447 ORIGIN_HEX5449
1.1071293 -0.8231035 -0.0329592
ORIGIN_HEX5450 ORIGIN_HEX5469 ORIGIN_HEX5470
-1.9591527 -2.7643099 -0.2542780
ORIGIN_HEX5471 ORIGIN_HEX5472 ORIGIN_HEX5473
-0.9613130 -0.4771297 -0.8888937
ORIGIN_HEX5474 ORIGIN_HEX5475 ORIGIN_HEX5476
0.3920626 -0.4929833 -1.1681704
ORIGIN_HEX5482 ORIGIN_HEX5483 ORIGIN_HEX5484
-0.4694974 -1.4188775 -0.3118044
ORIGIN_HEX5485 ORIGIN_HEX5488 ORIGIN_HEX5489
-0.6969409 -2.9261002 -1.7431946
ORIGIN_HEX5490 ORIGIN_HEX5492 ORIGIN_HEX5493
-0.7177683 -0.4264061 0.7115298
ORIGIN_HEX5495 ORIGIN_HEX5496 ORIGIN_HEX5497
-1.0773564 -1.0168778 -1.0829540
ORIGIN_HEX5520 ORIGIN_HEX5521 ORIGIN_HEX5522
0.0380762 0.7940469 1.2406898
ORIGIN_HEX5527 ORIGIN_HEX5529 ORIGIN_HEX5530
-2.3494295 0.2558052 0.1726738
ORIGIN_HEX5531 ORIGIN_HEX5538 ORIGIN_HEX5539
-1.2433260 1.6476136 -0.8130718
ORIGIN_HEX5540 ORIGIN_HEX5541 ORIGIN_HEX5542
-0.2815205 -0.6465132 1.6463328
ORIGIN_HEX5543 ORIGIN_HEX5544 ORIGIN_HEX5563
-0.1505164 -1.8153919 -1.1663302
ORIGIN_HEX5564 ORIGIN_HEX5565 ORIGIN_HEX5566
-0.0442691 0.1482384 -0.7365122
ORIGIN_HEX5567 ORIGIN_HEX5568 ORIGIN_HEX5569
-0.8598051 1.2630795 -0.6229266
ORIGIN_HEX5570 ORIGIN_HEX5571 ORIGIN_HEX5573
0.2802604 -0.0999153 -2.1205372
ORIGIN_HEX5575 ORIGIN_HEX5577 ORIGIN_HEX5578
0.2736761 -1.1072941 -1.6153154
ORIGIN_HEX5579 ORIGIN_HEX5584 ORIGIN_HEX5585
-1.1564041 -0.7795858 1.6394427
ORIGIN_HEX5586 ORIGIN_HEX5587 ORIGIN_HEX5588
-0.1456032 -1.1742838 -0.7779648
ORIGIN_HEX5589 ORIGIN_HEX5590 ORIGIN_HEX5611
0.5016269 -3.6544579 0.6831734
ORIGIN_HEX5613 ORIGIN_HEX5614 ORIGIN_HEX5615
-1.0020271 -0.9473934 0.7494890
ORIGIN_HEX5617 ORIGIN_HEX5621 ORIGIN_HEX5622
0.3023030 0.2282206 -0.9885682
ORIGIN_HEX5623 ORIGIN_HEX5624 ORIGIN_HEX5625
-0.6446696 -0.6602358 -0.9060497
ORIGIN_HEX5626 ORIGIN_HEX5627 ORIGIN_HEX5628
-1.4612923 -0.7817208 -1.3273902
ORIGIN_HEX5632 ORIGIN_HEX5633 ORIGIN_HEX5634
1.0573462 0.2262086 2.0575653
ORIGIN_HEX5635 ORIGIN_HEX5638 ORIGIN_HEX5657
0.1931638 -1.3595012 -1.3258261
ORIGIN_HEX5658 ORIGIN_HEX5660 ORIGIN_HEX5663
-0.1527893 -0.2266825 0.9849220
ORIGIN_HEX5664 ORIGIN_HEX5666 ORIGIN_HEX5667
-1.0028461 -1.6282954 -0.9854641
ORIGIN_HEX5668 ORIGIN_HEX5669 ORIGIN_HEX5670
-1.4465595 -0.6262391 0.7759086
ORIGIN_HEX5671 ORIGIN_HEX5672 ORIGIN_HEX5673
-1.0525838 1.0276497 -0.9731904
ORIGIN_HEX5674 ORIGIN_HEX5675 ORIGIN_HEX5678
-0.2216771 -0.4979590 -2.0947300
ORIGIN_HEX5679 ORIGIN_HEX5680 ORIGIN_HEX5681
-1.3866272 -0.1290233 -0.5819145
ORIGIN_HEX5682 ORIGIN_HEX5685 ORIGIN_HEX5705
0.0808806 0.6487318 -0.6455518
ORIGIN_HEX5706 ORIGIN_HEX5707 ORIGIN_HEX5708
0.5441422 -0.0491161 -0.2540728
ORIGIN_HEX5709 ORIGIN_HEX5711 ORIGIN_HEX5713
0.9868373 0.1348625 -0.6926935
ORIGIN_HEX5714 ORIGIN_HEX5715 ORIGIN_HEX5716
0.5396633 -1.2465215 0.1978731
ORIGIN_HEX5717 ORIGIN_HEX5718 ORIGIN_HEX5719
-0.1893434 0.1462149 -0.5813267
ORIGIN_HEX5720 ORIGIN_HEX5721 ORIGIN_HEX5722
-0.4681444 -0.3321292 -1.1201299
ORIGIN_HEX5726 ORIGIN_HEX5727 ORIGIN_HEX5728
0.2052950 -0.3762289 0.6001054
ORIGIN_HEX5751 ORIGIN_HEX5752 ORIGIN_HEX5753
0.0272253 -0.5282349 1.1315278
ORIGIN_HEX5754 ORIGIN_HEX5755 ORIGIN_HEX5757
-0.4209042 -0.3168892 0.3930407
ORIGIN_HEX5758 ORIGIN_HEX5759 ORIGIN_HEX5760
-0.1854522 0.1713545 -1.7100281
ORIGIN_HEX5761 ORIGIN_HEX5762 ORIGIN_HEX5763
-0.9802018 -0.9737448 -0.9505549
ORIGIN_HEX5764 ORIGIN_HEX5765 ORIGIN_HEX5767
-1.0279273 -1.1495412 -0.0342375
ORIGIN_HEX5768 ORIGIN_HEX5772 ORIGIN_HEX5773
-1.1270074 -1.4699311 -0.6061262
ORIGIN_HEX5774 ORIGIN_HEX5775 ORIGIN_HEX5776
-0.6874347 1.1347105 0.6873111
ORIGIN_HEX5799 ORIGIN_HEX5800 ORIGIN_HEX5801
0.5439006 -0.5121465 -0.1046385
ORIGIN_HEX5802 ORIGIN_HEX5803 ORIGIN_HEX5806
0.0967054 -0.0029818 1.0689477
ORIGIN_HEX5807 ORIGIN_HEX5808 ORIGIN_HEX5811
0.6554543 -1.0690224 -1.4435802
ORIGIN_HEX5812 ORIGIN_HEX5813 ORIGIN_HEX5814
-0.1914812 -0.4270655 -1.4384578
ORIGIN_HEX5815 ORIGIN_HEX5816 ORIGIN_HEX5820
0.2826996 0.9967417 0.1583744
ORIGIN_HEX5821 ORIGIN_HEX5823 ORIGIN_HEX583
-0.5808005 1.2255800 0.2871082
ORIGIN_HEX584 ORIGIN_HEX5846 ORIGIN_HEX5847
0.8259515 -1.0128277 1.0658346
ORIGIN_HEX5848 ORIGIN_HEX5849 ORIGIN_HEX585
-1.1113046 0.8505807 2.4437006
ORIGIN_HEX5851 ORIGIN_HEX5852 ORIGIN_HEX5853
0.6530804 0.1741208 -0.5138822
ORIGIN_HEX5854 ORIGIN_HEX5855 ORIGIN_HEX5856
-0.1368899 -0.1566597 -0.5076596
ORIGIN_HEX5858 ORIGIN_HEX5859 ORIGIN_HEX586
0.9094299 -0.0194861 -0.5122746
ORIGIN_HEX5860 ORIGIN_HEX5861 ORIGIN_HEX5862
-0.3890952 -0.7427205 -0.5582039
ORIGIN_HEX5863 ORIGIN_HEX5867 ORIGIN_HEX5868
0.8181204 0.2174879 0.7566517
ORIGIN_HEX5869 ORIGIN_HEX587 ORIGIN_HEX5893
-0.1038339 -2.1460258 0.2752773
ORIGIN_HEX5894 ORIGIN_HEX5895 ORIGIN_HEX5898
-0.0360651 0.5662190 -0.1404494
ORIGIN_HEX5899 ORIGIN_HEX5901 ORIGIN_HEX5902
-2.0832404 0.1362231 0.1895410
ORIGIN_HEX5903 ORIGIN_HEX5904 ORIGIN_HEX5905
0.6640765 -0.9114506 -0.7402285
ORIGIN_HEX5906 ORIGIN_HEX5907 ORIGIN_HEX5908
-0.3944711 1.9855239 -1.4269662
ORIGIN_HEX5909 ORIGIN_HEX5910 ORIGIN_HEX5914
1.1099836 0.2169475 -1.1491888
ORIGIN_HEX5915 ORIGIN_HEX5916 ORIGIN_HEX5940
0.3067570 0.5899316 1.0255553
ORIGIN_HEX5941 ORIGIN_HEX5942 ORIGIN_HEX5943
-1.6065179 0.1887025 0.6105764
ORIGIN_HEX5944 ORIGIN_HEX5945 ORIGIN_HEX5946
0.5579058 0.3356713 0.0417620
ORIGIN_HEX5947 ORIGIN_HEX5948 ORIGIN_HEX5949
0.0213854 2.0518799 -0.2239416
ORIGIN_HEX5950 ORIGIN_HEX5951 ORIGIN_HEX5954
-0.4569172 1.8837048 0.3524076
ORIGIN_HEX5955 ORIGIN_HEX5956 ORIGIN_HEX5957
-0.2417187 0.1507734 1.0992163
ORIGIN_HEX5961 ORIGIN_HEX5962 ORIGIN_HEX5963
-0.6167344 -0.1212927 -4.3479124
ORIGIN_HEX5987 ORIGIN_HEX5988 ORIGIN_HEX5989
-2.1855454 1.1014697 -0.7659000
ORIGIN_HEX5990 ORIGIN_HEX5991 ORIGIN_HEX5993
0.6425456 0.3865946 -0.3122216
ORIGIN_HEX5995 ORIGIN_HEX5996 ORIGIN_HEX5997
-1.4979519 -0.4233639 -0.3586433
ORIGIN_HEX5998 ORIGIN_HEX5999 ORIGIN_HEX6000
0.0572837 -1.1773020 -0.3790790
ORIGIN_HEX6001 ORIGIN_HEX6002 ORIGIN_HEX6009
1.5536559 0.3538255 -0.9923440
ORIGIN_HEX6010 ORIGIN_HEX6034 ORIGIN_HEX6035
0.2675244 0.5900414 0.7401635
ORIGIN_HEX6036 ORIGIN_HEX6037 ORIGIN_HEX6038
-0.6461798 0.1417524 0.9076416
ORIGIN_HEX6039 ORIGIN_HEX6040 ORIGIN_HEX6041
-1.0142358 -2.4077722 0.4296643
ORIGIN_HEX6042 ORIGIN_HEX6043 ORIGIN_HEX6044
-0.1560303 0.1646210 -1.0111125
ORIGIN_HEX6045 ORIGIN_HEX6046 ORIGIN_HEX6047
-1.0948405 -1.6341009 -0.7795259
ORIGIN_HEX6048 ORIGIN_HEX6051 ORIGIN_HEX6056
-0.6050161 -0.9530365 0.0528653
ORIGIN_HEX6082 ORIGIN_HEX6083 ORIGIN_HEX6084
-0.1385269 -2.0645854 -0.1734429
ORIGIN_HEX6085 ORIGIN_HEX6086 ORIGIN_HEX6088
1.4500657 0.6496268 0.1505019
ORIGIN_HEX6089 ORIGIN_HEX6090 ORIGIN_HEX6091
-0.5862323 -0.2092453 -0.1001772
ORIGIN_HEX6092 ORIGIN_HEX6093 ORIGIN_HEX6094
0.7818151 -0.4534410 0.4410446
ORIGIN_HEX6095 ORIGIN_HEX6096 ORIGIN_HEX6128
0.0243602 1.4294148 -0.8977705
ORIGIN_HEX6130 ORIGIN_HEX6131 ORIGIN_HEX6132
-0.4899669 -0.0579925 -0.3179689
ORIGIN_HEX6133 ORIGIN_HEX6134 ORIGIN_HEX6135
0.9841262 -0.7437515 -0.3599585
ORIGIN_HEX6136 ORIGIN_HEX6137 ORIGIN_HEX6140
0.2081928 -0.1862782 0.6367521
ORIGIN_HEX6141 ORIGIN_HEX6142 ORIGIN_HEX6145
0.1079803 -0.0219315 -0.4662418
ORIGIN_HEX6150 ORIGIN_HEX6174 ORIGIN_HEX6176
-1.9662821 0.1977450 0.0547003
ORIGIN_HEX6177 ORIGIN_HEX6178 ORIGIN_HEX6179
-1.2695662 0.7183843 0.1589416
ORIGIN_HEX6180 ORIGIN_HEX6181 ORIGIN_HEX6183
-1.0349561 -0.3736985 -0.0409213
ORIGIN_HEX6184 ORIGIN_HEX6185 ORIGIN_HEX6186
1.3028056 0.0865264 -1.5763661
ORIGIN_HEX6188 ORIGIN_HEX6189 ORIGIN_HEX6192
-1.1138103 -0.2373100 -1.2877024
ORIGIN_HEX6195 ORIGIN_HEX6222 ORIGIN_HEX6223
-2.0986189 -3.0164261 0.3283539
ORIGIN_HEX6224 ORIGIN_HEX6226 ORIGIN_HEX6227
0.0270716 0.4391868 0.2659340
ORIGIN_HEX6228 ORIGIN_HEX6229 ORIGIN_HEX6230
-0.1422570 -0.8830131 0.2107325
ORIGIN_HEX6231 ORIGIN_HEX6232 ORIGIN_HEX6233
0.2669648 -2.4241241 -0.4222393
ORIGIN_HEX6234 ORIGIN_HEX6235 ORIGIN_HEX6237
-2.8955719 -0.6400780 -1.2323824
ORIGIN_HEX6239 ORIGIN_HEX6241 ORIGIN_HEX6242
-1.7621339 -0.1499578 -2.3264581
ORIGIN_HEX6271 ORIGIN_HEX6272 ORIGIN_HEX6273
-1.9490083 -3.5839582 0.0080714
ORIGIN_HEX6274 ORIGIN_HEX6275 ORIGIN_HEX6276
0.7054066 -0.2517873 1.2492145
ORIGIN_HEX6278 ORIGIN_HEX6279 ORIGIN_HEX6280
1.0707233 -1.9432328 -0.2719232
ORIGIN_HEX6281 ORIGIN_HEX6283 ORIGIN_HEX6284
-1.2279561 -0.3958379 -0.0025226
ORIGIN_HEX6286 ORIGIN_HEX6289 ORIGIN_HEX6290
-1.3160260 -1.2714766 0.3028406
ORIGIN_HEX630 ORIGIN_HEX6315 ORIGIN_HEX6316
-0.2587662 -0.5866989 -2.0659559
ORIGIN_HEX632 ORIGIN_HEX6320 ORIGIN_HEX6321
-0.4478459 -0.1813139 0.2998336
ORIGIN_HEX6322 ORIGIN_HEX6323 ORIGIN_HEX6324
0.3079827 0.1981469 -1.1004220
ORIGIN_HEX6326 ORIGIN_HEX6327 ORIGIN_HEX6328
-1.4597564 -1.1473694 -2.0895670
ORIGIN_HEX633 ORIGIN_HEX6330 ORIGIN_HEX6331
1.5812560 1.0927919 0.1046662
ORIGIN_HEX6337 ORIGIN_HEX635 ORIGIN_HEX6364
0.2543224 0.7336126 -3.7996685
ORIGIN_HEX6368 ORIGIN_HEX6369 ORIGIN_HEX6370
-1.7284763 0.3493131 -0.5057331
ORIGIN_HEX6371 ORIGIN_HEX6372 ORIGIN_HEX6373
0.6009538 -0.9976198 -1.3360897
ORIGIN_HEX6374 ORIGIN_HEX6375 ORIGIN_HEX6376
-1.8520398 -0.7953623 0.6113716
ORIGIN_HEX6377 ORIGIN_HEX6378 ORIGIN_HEX6380
0.0119078 0.6973846 -1.0430760
ORIGIN_HEX6382 ORIGIN_HEX6385 ORIGIN_HEX6413
-0.9044954 -0.6476429 0.3293375
ORIGIN_HEX6415 ORIGIN_HEX6416 ORIGIN_HEX6417
0.0392525 -0.3206789 0.1533025
ORIGIN_HEX6418 ORIGIN_HEX6420 ORIGIN_HEX6421
1.2373761 -1.8698662 -0.7744632
ORIGIN_HEX6422 ORIGIN_HEX6423 ORIGIN_HEX6424
-1.5707700 -1.4827298 0.2704992
ORIGIN_HEX6425 ORIGIN_HEX6427 ORIGIN_HEX6429
0.8615812 -1.8994317 -1.1460117
ORIGIN_HEX6458 ORIGIN_HEX6463 ORIGIN_HEX6464
-3.0278687 -0.6257623 0.4977695
ORIGIN_HEX6465 ORIGIN_HEX6466 ORIGIN_HEX6467
0.9961247 -0.4039317 -1.4603219
ORIGIN_HEX6468 ORIGIN_HEX6469 ORIGIN_HEX6470
0.4354859 -0.2279991 -1.7007400
ORIGIN_HEX6471 ORIGIN_HEX6472 ORIGIN_HEX6474
-0.1209508 0.3992777 0.3912682
ORIGIN_HEX6475 ORIGIN_HEX6476 ORIGIN_HEX6477
-2.1437375 0.7096876 -0.9171061
ORIGIN_HEX6507 ORIGIN_HEX6509 ORIGIN_HEX6510
0.0499104 1.0035034 -1.6428339
ORIGIN_HEX6511 ORIGIN_HEX6513 ORIGIN_HEX6514
0.5199096 0.9678214 -0.8084180
ORIGIN_HEX6515 ORIGIN_HEX6516 ORIGIN_HEX6517
2.2658860 -0.9175018 -1.3691826
ORIGIN_HEX6518 ORIGIN_HEX6519 ORIGIN_HEX6520
1.4014887 0.5820236 -0.5582660
ORIGIN_HEX6521 ORIGIN_HEX6522 ORIGIN_HEX6523
-0.1604309 -1.5900064 -1.4208871
ORIGIN_HEX6524 ORIGIN_HEX6555 ORIGIN_HEX6556
-0.7707978 1.4412170 -1.3919328
ORIGIN_HEX6557 ORIGIN_HEX6558 ORIGIN_HEX6559
-1.2855000 1.8637400 0.5713391
ORIGIN_HEX6561 ORIGIN_HEX6562 ORIGIN_HEX6563
-1.6314520 0.6639811 -0.9635785
ORIGIN_HEX6564 ORIGIN_HEX6565 ORIGIN_HEX6566
-0.7464832 -0.0968801 -0.0397922
ORIGIN_HEX6568 ORIGIN_HEX6569 ORIGIN_HEX6570
-0.2690186 -0.3951577 0.9021386
ORIGIN_HEX6571 ORIGIN_HEX6601 ORIGIN_HEX6603
-0.8135985 -1.4417970 0.0040709
ORIGIN_HEX6605 ORIGIN_HEX6606 ORIGIN_HEX6607
0.6535995 0.1652942 -1.1207233
ORIGIN_HEX6608 ORIGIN_HEX6609 ORIGIN_HEX6610
-1.8934853 -0.5328390 -1.3086442
ORIGIN_HEX6611 ORIGIN_HEX6612 ORIGIN_HEX6613
-1.0077524 0.2427469 0.0923649
ORIGIN_HEX6614 ORIGIN_HEX6615 ORIGIN_HEX6616
-2.9417505 0.0480988 -1.9209663
ORIGIN_HEX6649 ORIGIN_HEX6650 ORIGIN_HEX6651
-3.2714657 0.4674977 -0.0839109
ORIGIN_HEX6652 ORIGIN_HEX6653 ORIGIN_HEX6654
-0.2773112 0.3736114 0.6726179
ORIGIN_HEX6655 ORIGIN_HEX6656 ORIGIN_HEX6657
0.5966210 -2.9821057 0.2004340
ORIGIN_HEX6659 ORIGIN_HEX6660 ORIGIN_HEX6661
-0.1573457 0.9327663 -0.8035449
ORIGIN_HEX6663 ORIGIN_HEX6695 ORIGIN_HEX6696
-0.5347190 -1.2483888 -2.1078789
ORIGIN_HEX6697 ORIGIN_HEX6698 ORIGIN_HEX6699
0.1201364 -0.1999024 -0.2182285
ORIGIN_HEX6700 ORIGIN_HEX6702 ORIGIN_HEX6703
-0.2424624 -1.3413030 -0.1369476
ORIGIN_HEX6706 ORIGIN_HEX6707 ORIGIN_HEX6708
-0.6974241 -0.1045728 0.3495698
ORIGIN_HEX6709 ORIGIN_HEX6744 ORIGIN_HEX6745
-0.5040707 -0.6096301 1.1386901
ORIGIN_HEX6746 ORIGIN_HEX6747 ORIGIN_HEX6749
0.1379768 -0.9646785 0.1661283
ORIGIN_HEX6750 ORIGIN_HEX6751 ORIGIN_HEX6753
-1.0749059 -1.0267762 -0.2364082
ORIGIN_HEX6754 ORIGIN_HEX6755 ORIGIN_HEX6757
0.1173215 -0.6475629 -0.2264966
ORIGIN_HEX678 ORIGIN_HEX6789 ORIGIN_HEX679
0.2328261 -0.0002091 0.7882337
ORIGIN_HEX6790 ORIGIN_HEX6791 ORIGIN_HEX6792
0.4341107 -0.4179370 -1.1793881
ORIGIN_HEX6793 ORIGIN_HEX6794 ORIGIN_HEX6796
0.0480923 0.2745401 -1.1473945
ORIGIN_HEX6797 ORIGIN_HEX6798 ORIGIN_HEX680
-0.0092437 0.4995478 -0.9177391
ORIGIN_HEX6800 ORIGIN_HEX6801 ORIGIN_HEX6802
0.5344418 0.5373275 0.1273188
ORIGIN_HEX681 ORIGIN_HEX682 ORIGIN_HEX6837
1.1758588 1.0021759 -0.3721716
ORIGIN_HEX6838 ORIGIN_HEX6839 ORIGIN_HEX6841
0.1940493 0.0850179 -0.1553992
ORIGIN_HEX6843 ORIGIN_HEX6846 ORIGIN_HEX6847
-0.1255135 1.3544111 -0.7291788
ORIGIN_HEX6848 ORIGIN_HEX6850 ORIGIN_HEX6851
-0.6217942 -0.6655761 -0.3213378
ORIGIN_HEX6885 ORIGIN_HEX6886 ORIGIN_HEX6887
-0.5461493 0.0057104 -0.3034212
ORIGIN_HEX6888 ORIGIN_HEX6889 ORIGIN_HEX6891
0.5830466 0.1911924 0.1493488
ORIGIN_HEX6892 ORIGIN_HEX6893 ORIGIN_HEX6894
-0.5189147 0.0986816 -0.0809533
ORIGIN_HEX6895 ORIGIN_HEX6896 ORIGIN_HEX6897
0.0147535 -0.7754706 0.2897843
ORIGIN_HEX6898 ORIGIN_HEX6931 ORIGIN_HEX6932
0.5749063 -0.2258581 0.9280051
ORIGIN_HEX6933 ORIGIN_HEX6934 ORIGIN_HEX6935
-0.1688101 -0.9316917 -0.4219210
ORIGIN_HEX6936 ORIGIN_HEX6938 ORIGIN_HEX6939
0.6737266 -0.4464847 -0.0176982
ORIGIN_HEX6940 ORIGIN_HEX6941 ORIGIN_HEX6942
-0.3119374 -0.2987888 -0.3168859
ORIGIN_HEX6943 ORIGIN_HEX6944 ORIGIN_HEX6945
-0.5313103 -1.1015134 -0.4515020
ORIGIN_HEX6946 ORIGIN_HEX6979 ORIGIN_HEX6980
-0.2184247 -1.2526311 1.6032194
ORIGIN_HEX6981 ORIGIN_HEX6982 ORIGIN_HEX6984
-0.0297372 -0.3561358 -0.9569438
ORIGIN_HEX6985 ORIGIN_HEX6986 ORIGIN_HEX6987
0.9602491 -0.0914650 0.4609674
ORIGIN_HEX6988 ORIGIN_HEX6989 ORIGIN_HEX6990
1.8559742 -0.5822480 -1.0632809
ORIGIN_HEX6991 ORIGIN_HEX6992 ORIGIN_HEX7025
0.3335154 -1.3023588 -0.5965878
ORIGIN_HEX7026 ORIGIN_HEX7027 ORIGIN_HEX7029
-0.1828897 0.6120573 0.3242918
ORIGIN_HEX7030 ORIGIN_HEX7031 ORIGIN_HEX7033
0.2049098 -0.3907918 -0.7287495
ORIGIN_HEX7034 ORIGIN_HEX7035 ORIGIN_HEX7036
0.1753640 -1.0096509 -0.3063887
ORIGIN_HEX7037 ORIGIN_HEX7038 ORIGIN_HEX7039
1.9556492 -0.6288862 0.1372494
ORIGIN_HEX7040 ORIGIN_HEX7072 ORIGIN_HEX7073
0.4280566 -0.2173284 -0.6190421
ORIGIN_HEX7074 ORIGIN_HEX7075 ORIGIN_HEX7076
1.3047694 0.0318808 1.6537960
ORIGIN_HEX7077 ORIGIN_HEX7081 ORIGIN_HEX7082
-0.0669522 -0.4238296 -0.0531993
ORIGIN_HEX7083 ORIGIN_HEX7084 ORIGIN_HEX7085
-0.9269217 -0.4190955 2.1126326
ORIGIN_HEX7086 ORIGIN_HEX7087 ORIGIN_HEX7119
-0.6558202 -0.4153937 -0.1862825
ORIGIN_HEX7120 ORIGIN_HEX7123 ORIGIN_HEX7124
-0.4379731 -0.1443795 0.8361619
ORIGIN_HEX7125 ORIGIN_HEX7128 ORIGIN_HEX7129
-1.8130950 -2.3908638 -0.3247731
ORIGIN_HEX7130 ORIGIN_HEX7131 ORIGIN_HEX7132
-0.4892996 -0.0199277 0.2849787
ORIGIN_HEX7133 ORIGIN_HEX7134 ORIGIN_HEX7135
-2.6062006 0.3539787 -0.1928088
ORIGIN_HEX7166 ORIGIN_HEX7167 ORIGIN_HEX7168
0.5757953 -0.3066504 0.4161705
ORIGIN_HEX7169 ORIGIN_HEX7170 ORIGIN_HEX7172
0.1107785 0.6203726 1.8398979
ORIGIN_HEX7173 ORIGIN_HEX7175 ORIGIN_HEX7176
2.4214389 -1.7964458 -0.3219986
ORIGIN_HEX7177 ORIGIN_HEX7178 ORIGIN_HEX7179
-1.6553022 -0.4105455 -0.4491819
ORIGIN_HEX7181 ORIGIN_HEX7182 ORIGIN_HEX7213
-1.2037440 -1.0628976 0.2348137
ORIGIN_HEX7214 ORIGIN_HEX7215 ORIGIN_HEX7217
0.4959156 -0.4311625 -0.1172947
ORIGIN_HEX7218 ORIGIN_HEX7222 ORIGIN_HEX7223
0.2435782 -1.4766816 -1.1197872
ORIGIN_HEX7224 ORIGIN_HEX7225 ORIGIN_HEX7226
0.0107776 -1.5058850 -0.1058206
ORIGIN_HEX7227 ORIGIN_HEX7228 ORIGIN_HEX7229
0.7838593 1.8034479 -1.6887132
ORIGIN_HEX723 ORIGIN_HEX7230 ORIGIN_HEX725
1.0852253 -0.7791157 0.0919991
ORIGIN_HEX726 ORIGIN_HEX7260 ORIGIN_HEX7261
-0.4065617 1.0598418 -0.0494953
ORIGIN_HEX7262 ORIGIN_HEX7264 ORIGIN_HEX7265
1.2230029 0.9159733 0.0373724
ORIGIN_HEX727 ORIGIN_HEX7271 ORIGIN_HEX7272
1.1836077 -0.0281868 -0.7093912
ORIGIN_HEX7273 ORIGIN_HEX7274 ORIGIN_HEX7275
-0.5003433 -0.4764360 0.8291770
ORIGIN_HEX7277 ORIGIN_HEX728 ORIGIN_HEX7307
0.1070323 1.4510122 1.7308449
ORIGIN_HEX7308 ORIGIN_HEX7309 ORIGIN_HEX731
0.3579977 -0.3769523 0.1819044
ORIGIN_HEX7310 ORIGIN_HEX7311 ORIGIN_HEX7312
1.1619960 0.0421492 0.9201430
ORIGIN_HEX7316 ORIGIN_HEX7319 ORIGIN_HEX7320
-1.2530311 -2.0186699 -0.7869755
ORIGIN_HEX7321 ORIGIN_HEX7322 ORIGIN_HEX7323
2.0281550 -0.7009741 -0.5310195
ORIGIN_HEX7324 ORIGIN_HEX7354 ORIGIN_HEX7355
-2.7267655 -0.2215294 -0.5384721
ORIGIN_HEX7356 ORIGIN_HEX7358 ORIGIN_HEX7359
-0.7539896 -0.9435706 -1.7291950
ORIGIN_HEX7363 ORIGIN_HEX7366 ORIGIN_HEX7367
0.7994475 -0.6686776 -0.6961608
ORIGIN_HEX7368 ORIGIN_HEX7369 ORIGIN_HEX7371
-0.7043237 -1.5237760 -3.3933048
ORIGIN_HEX7402 ORIGIN_HEX7403 ORIGIN_HEX7404
-0.0918158 -0.3878563 -0.9980713
ORIGIN_HEX7406 ORIGIN_HEX7411 ORIGIN_HEX7414
1.1911120 1.0389003 0.0869185
ORIGIN_HEX7415 ORIGIN_HEX7416 ORIGIN_HEX7418
-0.6996361 -0.3342751 -2.2131131
ORIGIN_HEX7448 ORIGIN_HEX7449 ORIGIN_HEX7450
0.1684596 -0.2935745 -0.1038257
ORIGIN_HEX7451 ORIGIN_HEX7452 ORIGIN_HEX7453
-1.1901804 0.5252559 -1.1632728
ORIGIN_HEX7458 ORIGIN_HEX7461 ORIGIN_HEX7462
0.7507511 -0.2854394 -0.3478347
ORIGIN_HEX7463 ORIGIN_HEX7465 ORIGIN_HEX7496
-0.0013636 0.1108216 -0.3884646
ORIGIN_HEX7498 ORIGIN_HEX7499 ORIGIN_HEX7500
1.8143963 0.4551627 0.2033350
ORIGIN_HEX7501 ORIGIN_HEX7506 ORIGIN_HEX7509
-0.2206504 -2.5574910 -0.0907273
ORIGIN_HEX7510 ORIGIN_HEX7542 ORIGIN_HEX7543
-0.3076071 0.1597786 -0.9755278
ORIGIN_HEX7544 ORIGIN_HEX7545 ORIGIN_HEX7546
-1.5666799 -1.1429411 -0.1480710
ORIGIN_HEX7547 ORIGIN_HEX7553 ORIGIN_HEX7555
0.2361290 -3.6928012 -0.7320927
ORIGIN_HEX7556 ORIGIN_HEX7590 ORIGIN_HEX7591
-0.9926280 -0.2937250 -1.3367075
ORIGIN_HEX7592 ORIGIN_HEX7594 ORIGIN_HEX7595
-0.7282577 1.0844705 -1.1917117
ORIGIN_HEX7603 ORIGIN_HEX7604 ORIGIN_HEX7637
-1.8395074 -0.3838613 -1.2028512
ORIGIN_HEX7638 ORIGIN_HEX7639 ORIGIN_HEX7641
-2.7908455 0.5483088 -0.9900580
ORIGIN_HEX7647 ORIGIN_HEX7650 ORIGIN_HEX7684
0.2265507 -0.1421807 -0.2198241
ORIGIN_HEX7685 ORIGIN_HEX7686 ORIGIN_HEX7687
-0.4245327 1.2109593 0.5110082
ORIGIN_HEX7694 ORIGIN_HEX770 ORIGIN_HEX771
1.0926813 1.2062894 0.2712084
ORIGIN_HEX773 ORIGIN_HEX7731 ORIGIN_HEX7732
1.8458553 -0.0407189 -0.8929198
ORIGIN_HEX7733 ORIGIN_HEX7734 ORIGIN_HEX7735
-0.3590890 0.4536808 0.4912278
ORIGIN_HEX7740 ORIGIN_HEX775 ORIGIN_HEX777
-0.4368592 0.1869157 0.0902784
ORIGIN_HEX7778 ORIGIN_HEX7779 ORIGIN_HEX778
-0.2491674 -1.8008499 0.0772794
ORIGIN_HEX7780 ORIGIN_HEX7781 ORIGIN_HEX7787
0.2594624 0.1976078 -0.6937104
ORIGIN_HEX779 ORIGIN_HEX7825 ORIGIN_HEX7826
-2.2525543 -0.4137566 -0.3862058
ORIGIN_HEX7828 ORIGIN_HEX7829 ORIGIN_HEX7831
0.0817001 -0.3509552 -1.2473942
ORIGIN_HEX7833 ORIGIN_HEX7834 ORIGIN_HEX7872
-0.8671051 0.6231563 -0.2272530
ORIGIN_HEX7873 ORIGIN_HEX7874 ORIGIN_HEX7875
-0.4777802 0.8186305 -0.4837522
ORIGIN_HEX7876 ORIGIN_HEX7878 ORIGIN_HEX7879
-0.3868623 0.4730541 -1.1891829
ORIGIN_HEX7881 ORIGIN_HEX7919 ORIGIN_HEX7920
-2.3689041 -0.2419391 -0.1805710
ORIGIN_HEX7921 ORIGIN_HEX7922 ORIGIN_HEX7923
2.4629885 0.0293314 -0.7153594
ORIGIN_HEX7925 ORIGIN_HEX7926 ORIGIN_HEX7927
0.0950991 -0.0049583 0.1861349
ORIGIN_HEX7928 ORIGIN_HEX7967 ORIGIN_HEX7968
1.5353544 -1.1121005 -2.0586349
ORIGIN_HEX7969 ORIGIN_HEX7970 ORIGIN_HEX7972
-0.1129135 0.5697368 1.2199448
ORIGIN_HEX7973 ORIGIN_HEX7974 ORIGIN_HEX7976
0.5320125 0.2431154 1.0369980
ORIGIN_HEX8013 ORIGIN_HEX8014 ORIGIN_HEX8015
-0.2866538 0.3802984 0.0967910
ORIGIN_HEX8016 ORIGIN_HEX8017 ORIGIN_HEX8018
0.4830874 0.9348986 -0.4788981
ORIGIN_HEX8019 ORIGIN_HEX8020 ORIGIN_HEX8021
0.2108282 -0.1053991 -0.6433935
ORIGIN_HEX8023 ORIGIN_HEX8061 ORIGIN_HEX8062
1.5264307 -0.6102569 -0.1392338
ORIGIN_HEX8063 ORIGIN_HEX8065 ORIGIN_HEX8066
-0.1591577 -1.4883894 -0.2876854
ORIGIN_HEX8067 ORIGIN_HEX8068 ORIGIN_HEX8070
-0.1750988 0.2665212 -0.2400799
ORIGIN_HEX8071 ORIGIN_HEX8108 ORIGIN_HEX8109
-1.4946598 -1.1593907 -0.8985429
ORIGIN_HEX8110 ORIGIN_HEX8112 ORIGIN_HEX8113
0.4609203 1.2611992 -0.3335546
ORIGIN_HEX8114 ORIGIN_HEX8115 ORIGIN_HEX8116
-0.7193355 -0.7132643 -1.4482160
ORIGIN_HEX8117 ORIGIN_HEX8155 ORIGIN_HEX8156
-0.2268583 -0.3328154 -0.8759897
ORIGIN_HEX8157 ORIGIN_HEX8158 ORIGIN_HEX8160
0.0241561 -0.4503147 0.3107647
ORIGIN_HEX8161 ORIGIN_HEX8162 ORIGIN_HEX8163
-0.0389856 -0.8871568 -1.4739588
ORIGIN_HEX8164 ORIGIN_HEX8165 ORIGIN_HEX818
-0.3143066 -0.4791083 1.1369908
ORIGIN_HEX819 ORIGIN_HEX820 ORIGIN_HEX8203
0.2824713 -0.5611867 0.1838596
ORIGIN_HEX8207 ORIGIN_HEX8208 ORIGIN_HEX8209
1.0399887 -2.5092773 0.0270227
ORIGIN_HEX8210 ORIGIN_HEX8211 ORIGIN_HEX823
-0.1307716 0.3937173 1.0363137
ORIGIN_HEX824 ORIGIN_HEX8249 ORIGIN_HEX825
1.3835257 -1.0848553 -1.8938836
ORIGIN_HEX8250 ORIGIN_HEX8252 ORIGIN_HEX8254
0.3904125 0.1012029 -0.3222262
ORIGIN_HEX8255 ORIGIN_HEX8256 ORIGIN_HEX8258
2.6171486 -0.7698408 -0.9525040
ORIGIN_HEX8259 ORIGIN_HEX826 ORIGIN_HEX827
-0.8939885 -1.0787833 0.9945789
ORIGIN_HEX828 ORIGIN_HEX8296 ORIGIN_HEX8297
0.7874725 -0.0814198 1.6032205
ORIGIN_HEX8298 ORIGIN_HEX8299 ORIGIN_HEX8300
0.1025655 0.5370791 0.1554585
ORIGIN_HEX8301 ORIGIN_HEX8302 ORIGIN_HEX8304
0.9991954 -0.9319055 -0.1929707
ORIGIN_HEX8305 ORIGIN_HEX8344 ORIGIN_HEX8345
-2.2067185 -1.5294690 1.1632939
ORIGIN_HEX8346 ORIGIN_HEX8347 ORIGIN_HEX8348
-0.5696555 0.2353310 -0.4319985
ORIGIN_HEX8349 ORIGIN_HEX8351 ORIGIN_HEX8352
-0.9459308 -0.9957529 -1.3952910
ORIGIN_HEX8353 ORIGIN_HEX8389 ORIGIN_HEX8390
-0.8871489 -0.6860503 -1.2296830
ORIGIN_HEX8391 ORIGIN_HEX8392 ORIGIN_HEX8393
-0.8430484 0.3938930 0.9200548
ORIGIN_HEX8394 ORIGIN_HEX8395 ORIGIN_HEX8396
-0.8390818 -1.8525277 -0.5302077
ORIGIN_HEX8398 ORIGIN_HEX8439 ORIGIN_HEX8440
2.4127134 -0.1853154 1.2037616
ORIGIN_HEX8441 ORIGIN_HEX8442 ORIGIN_HEX8443
1.4971431 -0.1668903 -0.1034493
ORIGIN_HEX8444 ORIGIN_HEX8445 ORIGIN_HEX8484
0.1196136 -0.5320207 -0.6898594
ORIGIN_HEX8485 ORIGIN_HEX8486 ORIGIN_HEX8488
-1.5478549 0.3215129 -0.4892414
ORIGIN_HEX8489 ORIGIN_HEX8490 ORIGIN_HEX8532
0.6304819 -0.8349642 0.4104595
ORIGIN_HEX8534 ORIGIN_HEX8535 ORIGIN_HEX8536
-1.4487432 -0.9159027 -0.9674001
ORIGIN_HEX8537 ORIGIN_HEX8538 ORIGIN_HEX8539
1.4224652 0.1146611 0.0860293
ORIGIN_HEX8540 ORIGIN_HEX8580 ORIGIN_HEX8581
0.6784089 0.0914039 -2.7720896
ORIGIN_HEX8582 ORIGIN_HEX8583 ORIGIN_HEX8584
0.2450316 -0.9308679 0.4307525
ORIGIN_HEX8585 ORIGIN_HEX8586 ORIGIN_HEX8587
-0.6915903 -0.9368247 0.3063461
ORIGIN_HEX8628 ORIGIN_HEX8629 ORIGIN_HEX8631
-0.7479388 0.5065877 0.1038980
ORIGIN_HEX8633 ORIGIN_HEX8634 ORIGIN_HEX866
0.2287688 -0.1996324 -0.5056586
ORIGIN_HEX867 ORIGIN_HEX8674 ORIGIN_HEX8675
0.6689957 0.3497376 -1.2009111
ORIGIN_HEX8676 ORIGIN_HEX8677 ORIGIN_HEX8679
0.1395859 -0.2095949 -0.0583122
ORIGIN_HEX8680 ORIGIN_HEX8681 ORIGIN_HEX870
0.2849556 0.6207966 0.5650486
ORIGIN_HEX872 ORIGIN_HEX8721 ORIGIN_HEX8722
-0.4675838 0.4077646 1.0533095
ORIGIN_HEX8723 ORIGIN_HEX8724 ORIGIN_HEX8725
-2.5082639 1.0631694 0.1969713
ORIGIN_HEX8726 ORIGIN_HEX8727 ORIGIN_HEX8728
-0.1822067 0.2171370 -0.7912455
ORIGIN_HEX873 ORIGIN_HEX874 ORIGIN_HEX8768
-1.8528557 -0.5934425 -0.3409253
ORIGIN_HEX8769 ORIGIN_HEX8771 ORIGIN_HEX8772
-1.0295736 0.8567672 0.5125111
ORIGIN_HEX8773 ORIGIN_HEX8774 ORIGIN_HEX8775
0.1540031 0.1376678 -0.5707086
ORIGIN_HEX8815 ORIGIN_HEX8816 ORIGIN_HEX8817
1.6638593 1.0866118 -1.1818219
ORIGIN_HEX8818 ORIGIN_HEX8819 ORIGIN_HEX8820
1.0935691 -0.0931318 -2.2924554
ORIGIN_HEX8862 ORIGIN_HEX8864 ORIGIN_HEX8865
-0.2508749 1.0403730 0.9547658
ORIGIN_HEX8866 ORIGIN_HEX8867 ORIGIN_HEX8868
0.4939943 -2.4029941 0.4070722
ORIGIN_HEX8910 ORIGIN_HEX8912 ORIGIN_HEX8914
0.2833308 0.6469146 -0.2841290
ORIGIN_HEX8915 ORIGIN_HEX8916 ORIGIN_HEX8917
-1.2813029 -1.8777404 0.9378051
ORIGIN_HEX8959 ORIGIN_HEX8961 ORIGIN_HEX8962
0.7248720 -1.7139033 1.0501780
ORIGIN_HEX8963 ORIGIN_HEX8964 ORIGIN_HEX9007
-0.2406197 0.8702391 0.3041815
ORIGIN_HEX9008 ORIGIN_HEX9010 ORIGIN_HEX9011
-0.3427615 0.0381626 0.1652927
ORIGIN_HEX9055 ORIGIN_HEX9056 ORIGIN_HEX9057
-2.6198357 -0.3842371 -0.2883586
ORIGIN_HEX9103 ORIGIN_HEX9105 ORIGIN_HEX9106
-0.4685461 -3.2553658 -0.9640589
ORIGIN_HEX914 ORIGIN_HEX9145 ORIGIN_HEX9150
0.4845335 0.9431767 -0.4778007
ORIGIN_HEX9152 ORIGIN_HEX9153 ORIGIN_HEX917
-0.0148354 -0.7258198 1.1378494
ORIGIN_HEX919 ORIGIN_HEX9193 ORIGIN_HEX920
0.6412568 1.1885996 -0.0375516
ORIGIN_HEX9200 ORIGIN_HEX9240 ORIGIN_HEX9246
-2.6953807 0.2474209 -0.2473385
ORIGIN_HEX9247 ORIGIN_HEX9283 ORIGIN_HEX9289
-1.5711944 1.9639678 1.7137229
ORIGIN_HEX9294 ORIGIN_HEX9340 ORIGIN_HEX9383
0.9764877 -0.1679859 1.4978247
ORIGIN_HEX9384 ORIGIN_HEX9388 ORIGIN_HEX9432
2.2841954 -0.8250644 0.9103273
ORIGIN_HEX9471 ORIGIN_HEX9480 ORIGIN_HEX9482
1.5664694 0.7871702 -2.7152770
ORIGIN_HEX9526 ORIGIN_HEX9527 ORIGIN_HEX9575
0.3921877 1.9647531 0.9330241
ORIGIN_HEX9576 ORIGIN_HEX9621 ORIGIN_HEX9622
0.5329091 1.0448569 1.6385604
ORIGIN_HEX965 ORIGIN_HEX966 ORIGIN_HEX9668
1.3768148 -1.3392508 0.9939970
ORIGIN_HEX9714 ORIGIN_HEX9988 log(entertn_count)
1.1319527 1.5855659 0.1242313
log(FB_count) log(lere_count) log(retail_count)
-0.1023757 -0.0643380 0.0907983
log(trainexits_count) log(residential_count) log(dist)
0.7528727 0.1249424 -1.0917845
Degrees of Freedom: 161670 Total (i.e. Null); 159856 Residual
Null Deviance: 96290000
Residual Deviance: 41900000 AIC: 42690000
CalcRSquared(orcSIM$data$WEEKDAY_AFTERNOON_PEAK, orcSIM$fitted.values)
[1] 0.2306263
r2_mcfadden(orcSIM)
# R2 for Generalized Linear Regression
R2: 0.560
adj. R2: 0.560
11.7Destination Constrained Spatial Interaction Model
The destination (attraction) constrained model predicts flows to destinations by applying a balancing factor to ensure that the total predicted inflows to each destination match the observed inflows. Unlike the origin constrained model, this model accounts for the capacity or attractiveness of each destination to attract inflows.
The code chunk is adjusted accordingly as below:
<- glm(formula = WEEKDAY_AFTERNOON_PEAK ~
decSIM +
DESTIN_HEX log(bus_stop_count) +
log(business_count) +
log(school_count) +
log(finserv_count) +
log(dist),
family = poisson(link = "log"),
data = SIM_data,
na.action = na.exclude)
write_rds(decSIM, "data/rds/decSIM.rds")
<- read_rds("data/rds/decSIM.rds")
decSIM decSIM
Call: glm(formula = WEEKDAY_AFTERNOON_PEAK ~ DESTIN_HEX + log(bus_stop_count) +
log(business_count) + log(school_count) + log(finserv_count) +
log(dist), family = poisson(link = "log"), data = SIM_data,
na.action = na.exclude)
Coefficients:
(Intercept) DESTIN_HEX1012 DESTIN_HEX1013
8.447842 -0.620665 1.552959
DESTIN_HEX1014 DESTIN_HEX1058 DESTIN_HEX1059
2.390755 1.632665 1.336681
DESTIN_HEX1060 DESTIN_HEX1061 DESTIN_HEX1104
2.318986 2.457471 2.632307
DESTIN_HEX1106 DESTIN_HEX1107 DESTIN_HEX1108
5.498398 3.840852 2.517246
DESTIN_HEX1152 DESTIN_HEX1153 DESTIN_HEX1154
3.831611 1.413679 2.608004
DESTIN_HEX1199 DESTIN_HEX1200 DESTIN_HEX1201
-0.825045 3.481625 2.737735
DESTIN_HEX1202 DESTIN_HEX1244 DESTIN_HEX1245
4.202204 0.917208 2.388941
DESTIN_HEX1246 DESTIN_HEX1247 DESTIN_HEX1291
1.152274 0.070541 3.214181
DESTIN_HEX1292 DESTIN_HEX1293 DESTIN_HEX1295
2.734613 -0.283585 1.604892
DESTIN_HEX1338 DESTIN_HEX1339 DESTIN_HEX1340
2.826374 2.018304 4.924653
DESTIN_HEX1341 DESTIN_HEX1385 DESTIN_HEX1386
2.385585 2.455026 2.678016
DESTIN_HEX1387 DESTIN_HEX1388 DESTIN_HEX1433
1.955599 0.561984 2.198688
DESTIN_HEX1434 DESTIN_HEX1479 DESTIN_HEX1480
3.879328 1.390610 2.575423
DESTIN_HEX1481 DESTIN_HEX1525 DESTIN_HEX1526
2.701184 3.350146 1.252878
DESTIN_HEX1527 DESTIN_HEX1528 DESTIN_HEX1529
3.437638 3.094626 3.580964
DESTIN_HEX1573 DESTIN_HEX1574 DESTIN_HEX1575
3.590325 1.432800 2.448803
DESTIN_HEX1619 DESTIN_HEX1621 DESTIN_HEX1622
3.753948 2.967183 4.021489
DESTIN_HEX1623 DESTIN_HEX1666 DESTIN_HEX1668
3.936538 3.175880 2.541494
DESTIN_HEX1669 DESTIN_HEX1670 DESTIN_HEX1671
2.382142 2.186917 2.216756
DESTIN_HEX1715 DESTIN_HEX1717 DESTIN_HEX1718
2.172002 0.146129 3.143800
DESTIN_HEX1761 DESTIN_HEX1762 DESTIN_HEX1763
3.413622 2.405183 1.449493
DESTIN_HEX1764 DESTIN_HEX1765 DESTIN_HEX1768
2.081198 1.733104 1.064033
DESTIN_HEX1808 DESTIN_HEX1809 DESTIN_HEX1810
2.970521 1.520056 0.247839
DESTIN_HEX1811 DESTIN_HEX1812 DESTIN_HEX1814
3.891577 1.520545 2.515835
DESTIN_HEX1815 DESTIN_HEX1855 DESTIN_HEX1856
1.815298 2.880625 2.336006
DESTIN_HEX1857 DESTIN_HEX1858 DESTIN_HEX1859
2.304166 2.001847 6.049929
DESTIN_HEX1861 DESTIN_HEX1862 DESTIN_HEX1903
4.170026 4.675106 -1.621048
DESTIN_HEX1904 DESTIN_HEX1905 DESTIN_HEX1906
2.698382 0.502234 2.169203
DESTIN_HEX1907 DESTIN_HEX1909 DESTIN_HEX1950
2.734840 4.165344 1.137720
DESTIN_HEX1952 DESTIN_HEX1953 DESTIN_HEX1955
1.145970 2.659216 3.390037
DESTIN_HEX1956 DESTIN_HEX1957 DESTIN_HEX1996
3.152196 4.454993 3.006570
DESTIN_HEX1997 DESTIN_HEX1998 DESTIN_HEX1999
2.417170 3.568262 2.484697
DESTIN_HEX2000 DESTIN_HEX2003 DESTIN_HEX2046
1.806949 1.797842 0.282109
DESTIN_HEX2047 DESTIN_HEX2049 DESTIN_HEX2050
2.087621 5.407134 4.766394
DESTIN_HEX2051 DESTIN_HEX2090 DESTIN_HEX2092
4.705234 1.567164 3.584444
DESTIN_HEX2093 DESTIN_HEX2094 DESTIN_HEX2095
1.734036 2.643815 3.880151
DESTIN_HEX2096 DESTIN_HEX2139 DESTIN_HEX2140
4.562976 2.948328 2.988491
DESTIN_HEX2141 DESTIN_HEX2142 DESTIN_HEX2143
2.357160 3.076807 5.310905
DESTIN_HEX2145 DESTIN_HEX2146 DESTIN_HEX2184
1.883199 -0.237729 2.817487
DESTIN_HEX2187 DESTIN_HEX2189 DESTIN_HEX2190
1.584625 3.706179 5.492825
DESTIN_HEX2192 DESTIN_HEX2193 DESTIN_HEX2194
0.509126 2.561649 2.168302
DESTIN_HEX2232 DESTIN_HEX2233 DESTIN_HEX2234
0.977301 2.948816 2.418126
DESTIN_HEX2235 DESTIN_HEX2236 DESTIN_HEX2237
3.894553 3.402209 4.872929
DESTIN_HEX2238 DESTIN_HEX2239 DESTIN_HEX2241
6.063297 2.616972 0.688119
DESTIN_HEX2242 DESTIN_HEX2278 DESTIN_HEX2279
1.871787 2.287898 2.575728
DESTIN_HEX2280 DESTIN_HEX2281 DESTIN_HEX2282
3.306797 2.658118 3.631304
DESTIN_HEX2283 DESTIN_HEX2284 DESTIN_HEX2288
5.708689 4.968754 3.007444
DESTIN_HEX2289 DESTIN_HEX2290 DESTIN_HEX2326
0.855073 0.805451 1.603713
DESTIN_HEX2327 DESTIN_HEX2328 DESTIN_HEX2329
2.018416 -0.465983 2.383474
DESTIN_HEX2330 DESTIN_HEX2331 DESTIN_HEX2332
4.205845 5.377881 5.013962
DESTIN_HEX2337 DESTIN_HEX2340 DESTIN_HEX2341
0.209256 2.205254 0.233564
DESTIN_HEX2342 DESTIN_HEX2372 DESTIN_HEX2376
1.117153 3.151315 2.523252
DESTIN_HEX2377 DESTIN_HEX2378 DESTIN_HEX2379
5.241305 4.757247 4.702609
DESTIN_HEX2382 DESTIN_HEX2386 DESTIN_HEX2388
1.488752 1.513186 -1.080587
DESTIN_HEX2389 DESTIN_HEX2421 DESTIN_HEX2422
0.968985 2.810029 3.248019
DESTIN_HEX2423 DESTIN_HEX2424 DESTIN_HEX2425
3.339791 2.542957 4.462264
DESTIN_HEX2426 DESTIN_HEX2434 DESTIN_HEX2436
5.288650 -1.135514 4.112664
DESTIN_HEX2437 DESTIN_HEX2466 DESTIN_HEX2470
1.349461 0.934981 0.873129
DESTIN_HEX2471 DESTIN_HEX2472 DESTIN_HEX2473
6.454892 4.978991 5.432120
DESTIN_HEX2476 DESTIN_HEX2484 DESTIN_HEX2515
0.909877 2.177659 1.230001
DESTIN_HEX2516 DESTIN_HEX2518 DESTIN_HEX2519
3.994263 1.575899 3.717326
DESTIN_HEX2520 DESTIN_HEX2532 DESTIN_HEX2533
3.804414 0.885108 0.684698
DESTIN_HEX2534 DESTIN_HEX2562 DESTIN_HEX2563
2.969696 2.185070 3.196816
DESTIN_HEX2564 DESTIN_HEX2565 DESTIN_HEX2566
2.257874 2.438077 4.210747
DESTIN_HEX2567 DESTIN_HEX2570 DESTIN_HEX2579
1.725308 0.253391 0.721019
DESTIN_HEX2580 DESTIN_HEX2609 DESTIN_HEX2611
1.022457 2.126733 1.209451
DESTIN_HEX2612 DESTIN_HEX2613 DESTIN_HEX2614
2.007285 3.505131 5.488127
DESTIN_HEX2655 DESTIN_HEX2657 DESTIN_HEX2658
1.545115 1.167779 0.706862
DESTIN_HEX2660 DESTIN_HEX2661 DESTIN_HEX2664
5.500010 3.108345 0.966191
DESTIN_HEX2703 DESTIN_HEX2705 DESTIN_HEX2706
1.396923 3.690679 2.205695
DESTIN_HEX2707 DESTIN_HEX2708 DESTIN_HEX2712
4.053102 4.199327 1.724996
DESTIN_HEX2752 DESTIN_HEX2753 DESTIN_HEX2754
1.997464 3.643355 3.969292
DESTIN_HEX2755 DESTIN_HEX2758 DESTIN_HEX2797
4.837883 2.968320 2.719942
DESTIN_HEX2798 DESTIN_HEX2799 DESTIN_HEX2800
1.540112 1.674086 2.733026
DESTIN_HEX2802 DESTIN_HEX2806 DESTIN_HEX2843
5.283707 5.810746 3.030579
DESTIN_HEX2844 DESTIN_HEX2845 DESTIN_HEX2846
1.664971 4.101713 3.863574
DESTIN_HEX2847 DESTIN_HEX2848 DESTIN_HEX2849
4.735946 5.631341 4.360118
DESTIN_HEX2891 DESTIN_HEX2893 DESTIN_HEX2894
3.002074 4.783761 5.236481
DESTIN_HEX2895 DESTIN_HEX2896 DESTIN_HEX2897
2.669898 1.957193 4.000589
DESTIN_HEX2900 DESTIN_HEX2937 DESTIN_HEX2939
2.861517 3.044066 3.777241
DESTIN_HEX2940 DESTIN_HEX2941 DESTIN_HEX2942
4.352992 4.042478 3.324288
DESTIN_HEX2943 DESTIN_HEX2987 DESTIN_HEX2988
5.300723 3.122124 3.674106
DESTIN_HEX2990 DESTIN_HEX2994 DESTIN_HEX3031
4.319282 1.446816 0.852789
DESTIN_HEX3033 DESTIN_HEX3036 DESTIN_HEX3084
3.683530 2.269423 4.653299
DESTIN_HEX3125 DESTIN_HEX3129 DESTIN_HEX3130
1.766229 2.960943 4.240937
DESTIN_HEX3135 DESTIN_HEX3172 DESTIN_HEX3173
1.979939 2.672998 4.344790
DESTIN_HEX3176 DESTIN_HEX3177 DESTIN_HEX3182
1.425372 4.370646 2.627459
DESTIN_HEX3218 DESTIN_HEX3220 DESTIN_HEX3221
1.225336 3.927419 3.778431
DESTIN_HEX3223 DESTIN_HEX3224 DESTIN_HEX3225
3.444825 4.557027 2.014493
DESTIN_HEX3229 DESTIN_HEX3238 DESTIN_HEX3266
5.721336 1.841204 0.714789
DESTIN_HEX3268 DESTIN_HEX3269 DESTIN_HEX3270
5.422613 2.424189 3.696705
DESTIN_HEX3271 DESTIN_HEX3272 DESTIN_HEX3273
4.533798 2.302287 4.775928
DESTIN_HEX3276 DESTIN_HEX3277 DESTIN_HEX3312
5.293831 5.094658 1.544389
DESTIN_HEX3314 DESTIN_HEX3316 DESTIN_HEX3317
2.638783 3.270632 3.887267
DESTIN_HEX3318 DESTIN_HEX3319 DESTIN_HEX3320
4.604636 4.423664 4.924394
DESTIN_HEX3322 DESTIN_HEX3323 DESTIN_HEX3325
1.428101 5.131531 2.645686
DESTIN_HEX3362 DESTIN_HEX3363 DESTIN_HEX3364
4.202522 2.979127 5.395207
DESTIN_HEX3365 DESTIN_HEX3366 DESTIN_HEX3367
4.516293 4.234259 4.762120
DESTIN_HEX3368 DESTIN_HEX3370 DESTIN_HEX3371
4.177985 5.261554 4.135468
DESTIN_HEX3372 DESTIN_HEX3406 DESTIN_HEX3408
3.683111 1.059662 3.249847
DESTIN_HEX3409 DESTIN_HEX3410 DESTIN_HEX3411
3.198207 3.660947 4.266618
DESTIN_HEX3412 DESTIN_HEX3413 DESTIN_HEX3414
3.974093 4.801650 4.508249
DESTIN_HEX3415 DESTIN_HEX3416 DESTIN_HEX3417
3.741618 4.603984 4.525420
DESTIN_HEX3418 DESTIN_HEX3419 DESTIN_HEX3426
5.990477 5.270843 3.776841
DESTIN_HEX3453 DESTIN_HEX3456 DESTIN_HEX3457
1.938024 3.882387 1.904852
DESTIN_HEX3458 DESTIN_HEX3459 DESTIN_HEX3460
3.785362 4.208821 4.713139
DESTIN_HEX3461 DESTIN_HEX3462 DESTIN_HEX3463
2.041003 5.054143 2.353868
DESTIN_HEX3464 DESTIN_HEX3465 DESTIN_HEX3466
5.065786 2.143616 4.196084
DESTIN_HEX3467 DESTIN_HEX3468 DESTIN_HEX3472
3.377782 5.082183 2.036989
DESTIN_HEX3473 DESTIN_HEX3499 DESTIN_HEX3502
3.882782 0.314049 4.191043
DESTIN_HEX3503 DESTIN_HEX3504 DESTIN_HEX3505
2.392260 3.102355 4.574123
DESTIN_HEX3506 DESTIN_HEX3507 DESTIN_HEX3508
4.690099 3.538613 4.395800
DESTIN_HEX3509 DESTIN_HEX3511 DESTIN_HEX3512
4.626721 4.233381 2.785058
DESTIN_HEX3513 DESTIN_HEX3514 DESTIN_HEX3518
4.473639 5.364359 2.062519
DESTIN_HEX3519 DESTIN_HEX3547 DESTIN_HEX3549
2.256932 -0.588927 3.190541
DESTIN_HEX3551 DESTIN_HEX3552 DESTIN_HEX3554
3.184825 3.410875 2.372164
DESTIN_HEX3555 DESTIN_HEX3556 DESTIN_HEX3557
2.909866 3.952206 4.106838
DESTIN_HEX3558 DESTIN_HEX3559 DESTIN_HEX3561
4.121985 5.201857 2.844325
DESTIN_HEX3562 DESTIN_HEX3564 DESTIN_HEX3565
6.183081 2.128999 2.068832
DESTIN_HEX3593 DESTIN_HEX3594 DESTIN_HEX3595
2.644163 2.646033 2.972990
DESTIN_HEX3599 DESTIN_HEX3600 DESTIN_HEX3601
4.673766 2.555646 5.469504
DESTIN_HEX3602 DESTIN_HEX3603 DESTIN_HEX3604
5.612545 3.889180 2.892271
DESTIN_HEX3605 DESTIN_HEX3607 DESTIN_HEX3608
4.219223 4.518516 4.890859
DESTIN_HEX3610 DESTIN_HEX3611 DESTIN_HEX3613
2.899820 2.877771 1.948205
DESTIN_HEX3641 DESTIN_HEX3643 DESTIN_HEX3644
1.856389 2.735178 4.640040
DESTIN_HEX3645 DESTIN_HEX3647 DESTIN_HEX3648
2.225981 4.262718 4.366474
DESTIN_HEX3649 DESTIN_HEX3652 DESTIN_HEX3653
4.575829 3.253540 4.887019
DESTIN_HEX3654 DESTIN_HEX3655 DESTIN_HEX3656
2.384477 2.772032 0.211265
DESTIN_HEX3657 DESTIN_HEX3658 DESTIN_HEX3661
1.217880 1.490865 2.695541
DESTIN_HEX3689 DESTIN_HEX3691 DESTIN_HEX3692
2.584309 2.539249 0.969681
DESTIN_HEX3693 DESTIN_HEX3694 DESTIN_HEX3695
4.730480 4.761478 4.967091
DESTIN_HEX3699 DESTIN_HEX3700 DESTIN_HEX3701
4.556505 3.061179 3.001428
DESTIN_HEX3702 DESTIN_HEX3703 DESTIN_HEX3704
2.665565 4.520086 2.719439
DESTIN_HEX3705 DESTIN_HEX3706 DESTIN_HEX3707
1.033996 -0.020424 2.127847
DESTIN_HEX3736 DESTIN_HEX3739 DESTIN_HEX3740
2.521215 2.756794 1.935204
DESTIN_HEX3741 DESTIN_HEX3742 DESTIN_HEX3748
3.299038 4.955273 1.801780
DESTIN_HEX3750 DESTIN_HEX3751 DESTIN_HEX3753
2.619829 4.007699 2.736490
DESTIN_HEX3754 DESTIN_HEX3782 DESTIN_HEX3783
2.503822 3.423152 3.897923
DESTIN_HEX3784 DESTIN_HEX3785 DESTIN_HEX3786
4.226073 1.847092 2.668256
DESTIN_HEX3787 DESTIN_HEX3788 DESTIN_HEX3789
3.957274 4.595184 4.394702
DESTIN_HEX3793 DESTIN_HEX3794 DESTIN_HEX3798
4.378080 4.983946 0.045522
DESTIN_HEX3829 DESTIN_HEX3830 DESTIN_HEX3831
2.976373 4.904621 3.849441
DESTIN_HEX3832 DESTIN_HEX3836 DESTIN_HEX3837
4.532987 3.540246 3.997772
DESTIN_HEX3839 DESTIN_HEX3840 DESTIN_HEX3841
-0.349927 1.423101 3.907210
DESTIN_HEX3845 DESTIN_HEX3847 DESTIN_HEX3848
0.113038 6.070485 3.319203
DESTIN_HEX3875 DESTIN_HEX3876 DESTIN_HEX3877
3.644200 5.350782 4.229097
DESTIN_HEX3878 DESTIN_HEX3879 DESTIN_HEX3881
4.728757 3.344040 2.823280
DESTIN_HEX3882 DESTIN_HEX3884 DESTIN_HEX3886
1.847722 4.488243 2.799369
DESTIN_HEX3887 DESTIN_HEX3888 DESTIN_HEX3895
5.870410 4.458706 3.511497
DESTIN_HEX3922 DESTIN_HEX3923 DESTIN_HEX3924
3.018733 3.197557 2.840168
DESTIN_HEX3925 DESTIN_HEX3926 DESTIN_HEX393
6.184454 5.088933 3.809691
DESTIN_HEX3930 DESTIN_HEX3932 DESTIN_HEX3933
2.221035 4.057281 2.020176
DESTIN_HEX3935 DESTIN_HEX3936 DESTIN_HEX3939
4.482468 2.474309 3.520825
DESTIN_HEX3942 DESTIN_HEX3943 DESTIN_HEX3968
3.224804 2.248099 3.153490
DESTIN_HEX3969 DESTIN_HEX3971 DESTIN_HEX3972
4.036529 4.463803 4.674567
DESTIN_HEX3975 DESTIN_HEX3976 DESTIN_HEX3978
4.143586 2.605968 3.411550
DESTIN_HEX3979 DESTIN_HEX3980 DESTIN_HEX3981
2.489582 2.900230 4.256868
DESTIN_HEX3982 DESTIN_HEX3990 DESTIN_HEX4016
4.454808 3.004012 3.300625
DESTIN_HEX4017 DESTIN_HEX4018 DESTIN_HEX4019
3.855196 3.188342 3.281791
DESTIN_HEX4020 DESTIN_HEX4023 DESTIN_HEX4024
4.665579 4.247295 0.947158
DESTIN_HEX4025 DESTIN_HEX4026 DESTIN_HEX4028
3.510665 3.652514 4.902326
DESTIN_HEX4029 DESTIN_HEX4030 DESTIN_HEX4033
4.170820 5.168612 1.487394
DESTIN_HEX4038 DESTIN_HEX4062 DESTIN_HEX4063
6.930422 3.305623 3.411306
DESTIN_HEX4064 DESTIN_HEX4065 DESTIN_HEX4066
4.648635 4.773608 3.347602
DESTIN_HEX4067 DESTIN_HEX4070 DESTIN_HEX4071
3.279382 3.497766 2.791105
DESTIN_HEX4073 DESTIN_HEX4074 DESTIN_HEX4075
2.763784 3.401687 4.647219
DESTIN_HEX4076 DESTIN_HEX4083 DESTIN_HEX4084
4.728681 3.570519 4.973742
DESTIN_HEX4109 DESTIN_HEX4111 DESTIN_HEX4112
1.243334 2.839220 4.038552
DESTIN_HEX4113 DESTIN_HEX4114 DESTIN_HEX4117
3.553736 3.302827 3.767897
DESTIN_HEX4118 DESTIN_HEX4122 DESTIN_HEX4123
3.600754 5.695732 0.538301
DESTIN_HEX4124 DESTIN_HEX4127 DESTIN_HEX4130
5.394092 2.073870 3.962087
DESTIN_HEX4131 DESTIN_HEX4132 DESTIN_HEX4156
3.755035 5.694141 3.797628
DESTIN_HEX4157 DESTIN_HEX4159 DESTIN_HEX4161
3.111443 2.058611 1.818345
DESTIN_HEX4163 DESTIN_HEX4167 DESTIN_HEX4168
4.425441 3.143189 4.459431
DESTIN_HEX4169 DESTIN_HEX4176 DESTIN_HEX4177
3.827199 4.766638 5.559710
DESTIN_HEX4178 DESTIN_HEX4179 DESTIN_HEX4203
4.246510 3.805261 3.495210
DESTIN_HEX4205 DESTIN_HEX4206 DESTIN_HEX4207
3.701550 1.421378 3.853090
DESTIN_HEX4208 DESTIN_HEX4209 DESTIN_HEX4210
2.756508 4.249594 2.687726
DESTIN_HEX4211 DESTIN_HEX4215 DESTIN_HEX4221
4.351603 4.310704 3.351856
DESTIN_HEX4224 DESTIN_HEX4225 DESTIN_HEX4226
3.218992 4.642922 4.698329
DESTIN_HEX4227 DESTIN_HEX4250 DESTIN_HEX4251
2.420662 2.290197 3.265051
DESTIN_HEX4253 DESTIN_HEX4254 DESTIN_HEX4256
4.544457 3.871021 3.465096
DESTIN_HEX4257 DESTIN_HEX4271 DESTIN_HEX4272
4.035037 4.691758 5.255240
DESTIN_HEX4273 DESTIN_HEX4297 DESTIN_HEX4300
1.435306 2.219386 3.210498
DESTIN_HEX4301 DESTIN_HEX4302 DESTIN_HEX4304
2.694181 3.237063 4.067560
DESTIN_HEX4315 DESTIN_HEX4318 DESTIN_HEX4319
3.108098 4.646033 4.206262
DESTIN_HEX4320 DESTIN_HEX4321 DESTIN_HEX4343
2.103335 2.854768 4.888409
DESTIN_HEX4345 DESTIN_HEX4346 DESTIN_HEX4347
3.517981 4.651278 2.560196
DESTIN_HEX4348 DESTIN_HEX4351 DESTIN_HEX4362
2.611148 5.260595 -0.478306
DESTIN_HEX4365 DESTIN_HEX4390 DESTIN_HEX4391
4.433831 3.996748 1.760863
DESTIN_HEX4392 DESTIN_HEX4393 DESTIN_HEX4394
4.431233 1.657175 4.773529
DESTIN_HEX4395 DESTIN_HEX4398 DESTIN_HEX4409
2.584281 1.509296 0.548937
DESTIN_HEX4412 DESTIN_HEX4413 DESTIN_HEX4414
3.219775 5.167854 3.915005
DESTIN_HEX4415 DESTIN_HEX4436 DESTIN_HEX4437
5.641222 3.024858 2.474315
DESTIN_HEX4438 DESTIN_HEX4439 DESTIN_HEX444
2.269218 2.519123 3.116529
DESTIN_HEX4440 DESTIN_HEX4441 DESTIN_HEX4442
2.416263 3.614024 2.668791
DESTIN_HEX4459 DESTIN_HEX4460 DESTIN_HEX4484
4.716002 3.364491 3.694502
DESTIN_HEX4485 DESTIN_HEX4486 DESTIN_HEX4487
2.235068 2.482589 2.282621
DESTIN_HEX4488 DESTIN_HEX4489 DESTIN_HEX4490
3.554514 2.020932 2.115312
DESTIN_HEX4492 DESTIN_HEX4502 DESTIN_HEX4506
3.604427 4.073446 4.233824
DESTIN_HEX4507 DESTIN_HEX4508 DESTIN_HEX4509
6.449157 4.803394 4.672851
DESTIN_HEX4530 DESTIN_HEX4532 DESTIN_HEX4533
2.431729 2.245805 1.428083
DESTIN_HEX4534 DESTIN_HEX4535 DESTIN_HEX4537
5.006169 1.303426 2.126491
DESTIN_HEX4538 DESTIN_HEX4550 DESTIN_HEX4552
3.442216 0.430379 1.036547
DESTIN_HEX4553 DESTIN_HEX4554 DESTIN_HEX4556
4.710206 3.975098 5.227108
DESTIN_HEX4577 DESTIN_HEX4579 DESTIN_HEX4580
4.246295 2.583425 2.182392
DESTIN_HEX4581 DESTIN_HEX4582 DESTIN_HEX4583
1.045230 3.997703 1.904119
DESTIN_HEX4584 DESTIN_HEX4585 DESTIN_HEX4586
2.595300 1.936405 2.619475
DESTIN_HEX4600 DESTIN_HEX4601 DESTIN_HEX4602
4.348082 3.943494 5.350583
DESTIN_HEX4603 DESTIN_HEX4624 DESTIN_HEX4626
4.052413 2.729475 1.996209
DESTIN_HEX4627 DESTIN_HEX4628 DESTIN_HEX4629
1.804859 3.392534 3.891329
DESTIN_HEX4631 DESTIN_HEX4632 DESTIN_HEX4646
3.038648 2.957749 3.781316
DESTIN_HEX4647 DESTIN_HEX4648 DESTIN_HEX4649
4.869238 5.183281 4.170189
DESTIN_HEX4650 DESTIN_HEX4671 DESTIN_HEX4674
3.560475 2.568701 2.145922
DESTIN_HEX4675 DESTIN_HEX4676 DESTIN_HEX4679
2.280116 3.804580 1.069792
DESTIN_HEX4692 DESTIN_HEX4694 DESTIN_HEX4695
1.813324 5.405949 5.687178
DESTIN_HEX4696 DESTIN_HEX4698 DESTIN_HEX4720
5.299465 3.059185 2.778709
DESTIN_HEX4721 DESTIN_HEX4722 DESTIN_HEX4726
2.349793 2.447277 3.808450
DESTIN_HEX4741 DESTIN_HEX4742 DESTIN_HEX4743
5.676668 4.715266 5.627956
DESTIN_HEX4765 DESTIN_HEX4766 DESTIN_HEX4768
3.501066 2.728934 2.746308
DESTIN_HEX4769 DESTIN_HEX4770 DESTIN_HEX4786
4.861320 3.862730 3.401279
DESTIN_HEX4788 DESTIN_HEX4789 DESTIN_HEX4790
4.544712 5.086180 3.938236
DESTIN_HEX4791 DESTIN_HEX4792 DESTIN_HEX4812
4.738217 1.879059 2.072472
DESTIN_HEX4813 DESTIN_HEX4814 DESTIN_HEX4815
3.964786 4.099977 3.594020
DESTIN_HEX4816 DESTIN_HEX4817 DESTIN_HEX4835
3.882943 2.634425 4.664268
DESTIN_HEX4836 DESTIN_HEX4837 DESTIN_HEX4838
6.160277 5.074440 3.687907
DESTIN_HEX4839 DESTIN_HEX4840 DESTIN_HEX4859
-0.717715 1.067448 1.780924
DESTIN_HEX4860 DESTIN_HEX4861 DESTIN_HEX4862
3.176625 3.923630 4.466307
DESTIN_HEX4863 DESTIN_HEX4864 DESTIN_HEX4865
2.301057 2.228237 3.651160
DESTIN_HEX4867 DESTIN_HEX488 DESTIN_HEX4880
3.100248 3.314139 1.158111
DESTIN_HEX4883 DESTIN_HEX4884 DESTIN_HEX4885
4.040555 4.349542 4.054181
DESTIN_HEX4886 DESTIN_HEX4887 DESTIN_HEX490
3.738444 3.310921 3.700297
DESTIN_HEX4905 DESTIN_HEX4906 DESTIN_HEX4908
2.148489 3.865845 3.717881
DESTIN_HEX4909 DESTIN_HEX491 DESTIN_HEX4911
3.863783 3.757092 2.979391
DESTIN_HEX4912 DESTIN_HEX4913 DESTIN_HEX4925
4.214934 3.310576 1.709739
DESTIN_HEX4926 DESTIN_HEX4930 DESTIN_HEX4931
1.526642 4.929783 4.048701
DESTIN_HEX4932 DESTIN_HEX4933 DESTIN_HEX4953
1.928966 2.840411 3.636269
DESTIN_HEX4954 DESTIN_HEX4955 DESTIN_HEX4956
4.086778 4.131495 2.784385
DESTIN_HEX4958 DESTIN_HEX4961 DESTIN_HEX4974
2.216649 4.018523 1.001046
DESTIN_HEX4978 DESTIN_HEX4981 DESTIN_HEX4999
5.397204 4.510445 4.185432
DESTIN_HEX5000 DESTIN_HEX5001 DESTIN_HEX5002
4.474208 3.900919 4.023700
DESTIN_HEX5003 DESTIN_HEX5006 DESTIN_HEX5007
3.821256 1.498621 3.355062
DESTIN_HEX5019 DESTIN_HEX5025 DESTIN_HEX5026
1.199619 3.008615 3.393501
DESTIN_HEX5027 DESTIN_HEX5028 DESTIN_HEX5047
4.231313 3.598252 3.670209
DESTIN_HEX5048 DESTIN_HEX5049 DESTIN_HEX5050
3.485147 3.106590 4.098080
DESTIN_HEX5052 DESTIN_HEX5054 DESTIN_HEX5066
2.467508 2.663368 0.673767
DESTIN_HEX5072 DESTIN_HEX5073 DESTIN_HEX5075
4.523490 2.304531 3.289293
DESTIN_HEX5093 DESTIN_HEX5094 DESTIN_HEX5095
2.895133 3.148255 2.601340
DESTIN_HEX5096 DESTIN_HEX5097 DESTIN_HEX5098
2.700771 3.675596 1.429839
DESTIN_HEX5101 DESTIN_HEX5102 DESTIN_HEX5119
2.846437 2.511822 4.629699
DESTIN_HEX5121 DESTIN_HEX5140 DESTIN_HEX5141
4.025052 3.620810 2.791051
DESTIN_HEX5142 DESTIN_HEX5143 DESTIN_HEX5144
3.227155 4.266749 2.697774
DESTIN_HEX5148 DESTIN_HEX5149 DESTIN_HEX5160
3.737584 2.043963 2.777688
DESTIN_HEX5166 DESTIN_HEX5167 DESTIN_HEX5168
4.024462 3.347256 5.515369
DESTIN_HEX5169 DESTIN_HEX5188 DESTIN_HEX5189
2.559073 3.892308 4.038892
DESTIN_HEX5190 DESTIN_HEX5191 DESTIN_HEX5197
4.297242 2.616665 1.022349
DESTIN_HEX5205 DESTIN_HEX5206 DESTIN_HEX5212
0.087023 4.218288 2.572195
DESTIN_HEX5213 DESTIN_HEX5214 DESTIN_HEX5215
4.989191 5.657051 3.806951
DESTIN_HEX5234 DESTIN_HEX5235 DESTIN_HEX5236
4.946170 4.564196 2.148450
DESTIN_HEX5237 DESTIN_HEX5239 DESTIN_HEX5240
3.754294 0.855808 3.058254
DESTIN_HEX5242 DESTIN_HEX5244 DESTIN_HEX5252
2.494885 1.070008 -0.277712
DESTIN_HEX5253 DESTIN_HEX5254 DESTIN_HEX5260
5.132323 3.718915 3.933877
DESTIN_HEX5261 DESTIN_HEX5262 DESTIN_HEX5280
5.525643 2.579046 4.897783
DESTIN_HEX5281 DESTIN_HEX5282 DESTIN_HEX5283
4.246654 4.123063 4.004356
DESTIN_HEX5284 DESTIN_HEX5286 DESTIN_HEX5298
3.046689 2.546268 1.142450
DESTIN_HEX5301 DESTIN_HEX5307 DESTIN_HEX5308
2.915387 3.784163 3.939650
DESTIN_HEX5309 DESTIN_HEX5328 DESTIN_HEX5329
4.139405 3.146533 4.472768
DESTIN_HEX5330 DESTIN_HEX5331 DESTIN_HEX5333
3.592275 3.556631 1.271270
DESTIN_HEX5336 DESTIN_HEX5339 DESTIN_HEX5349
2.139638 -0.138178 0.263987
DESTIN_HEX535 DESTIN_HEX5350 DESTIN_HEX5354
3.037074 1.697241 3.355492
DESTIN_HEX5355 DESTIN_HEX5356 DESTIN_HEX537
3.754750 2.362868 3.755651
DESTIN_HEX5373 DESTIN_HEX5375 DESTIN_HEX5377
3.921715 3.653290 3.689955
DESTIN_HEX5378 DESTIN_HEX5379 DESTIN_HEX5380
3.010781 2.800046 2.531822
DESTIN_HEX5382 DESTIN_HEX5383 DESTIN_HEX5397
3.894686 1.991309 0.600434
DESTIN_HEX5398 DESTIN_HEX5399 DESTIN_HEX540
4.371448 3.981493 3.392694
DESTIN_HEX5400 DESTIN_HEX5401 DESTIN_HEX5402
4.627665 3.545623 3.363413
DESTIN_HEX5403 DESTIN_HEX5422 DESTIN_HEX5423
1.084486 1.532989 3.038634
DESTIN_HEX5424 DESTIN_HEX5425 DESTIN_HEX5426
4.380157 5.156722 4.022003
DESTIN_HEX5428 DESTIN_HEX5429 DESTIN_HEX5430
3.224136 3.172389 4.157640
DESTIN_HEX5433 DESTIN_HEX5436 DESTIN_HEX5437
-0.292961 2.666085 1.847373
DESTIN_HEX5438 DESTIN_HEX5439 DESTIN_HEX5442
3.001709 3.066573 2.902358
DESTIN_HEX5443 DESTIN_HEX5445 DESTIN_HEX5446
2.192600 3.243541 5.378654
DESTIN_HEX5447 DESTIN_HEX5449 DESTIN_HEX5450
3.397744 4.648090 1.936989
DESTIN_HEX5469 DESTIN_HEX5470 DESTIN_HEX5471
0.022950 3.777203 3.818032
DESTIN_HEX5472 DESTIN_HEX5473 DESTIN_HEX5474
3.793982 2.112994 3.783370
DESTIN_HEX5475 DESTIN_HEX5476 DESTIN_HEX5482
2.912908 2.621579 3.713105
DESTIN_HEX5483 DESTIN_HEX5484 DESTIN_HEX5485
1.790259 3.274210 3.038846
DESTIN_HEX5488 DESTIN_HEX5489 DESTIN_HEX5490
1.696808 1.534099 3.722560
DESTIN_HEX5492 DESTIN_HEX5493 DESTIN_HEX5495
3.682773 4.290370 4.038770
DESTIN_HEX5496 DESTIN_HEX5497 DESTIN_HEX5520
3.648105 0.694355 3.439858
DESTIN_HEX5521 DESTIN_HEX5522 DESTIN_HEX5527
3.076448 3.734009 2.114949
DESTIN_HEX5529 DESTIN_HEX5530 DESTIN_HEX5531
4.099934 3.124213 2.609532
DESTIN_HEX5538 DESTIN_HEX5539 DESTIN_HEX5540
5.759860 3.839370 3.613285
DESTIN_HEX5541 DESTIN_HEX5542 DESTIN_HEX5543
4.343106 5.029387 5.080387
DESTIN_HEX5544 DESTIN_HEX5563 DESTIN_HEX5564
1.730769 -0.237045 3.395719
DESTIN_HEX5565 DESTIN_HEX5566 DESTIN_HEX5567
3.790486 2.813668 2.638678
DESTIN_HEX5568 DESTIN_HEX5569 DESTIN_HEX5570
4.266399 1.730859 3.365169
DESTIN_HEX5571 DESTIN_HEX5573 DESTIN_HEX5575
2.486760 1.069787 3.782030
DESTIN_HEX5577 DESTIN_HEX5578 DESTIN_HEX5579
2.802618 2.592165 3.482309
DESTIN_HEX5584 DESTIN_HEX5585 DESTIN_HEX5586
3.983844 4.871490 3.895396
DESTIN_HEX5587 DESTIN_HEX5588 DESTIN_HEX5589
3.219396 3.622734 5.858233
DESTIN_HEX5590 DESTIN_HEX5611 DESTIN_HEX5613
1.377477 3.819072 2.756982
DESTIN_HEX5614 DESTIN_HEX5615 DESTIN_HEX5617
2.946618 3.325539 3.214104
DESTIN_HEX5621 DESTIN_HEX5622 DESTIN_HEX5623
3.409203 2.884866 3.385276
DESTIN_HEX5624 DESTIN_HEX5625 DESTIN_HEX5626
4.434896 4.013580 3.845242
DESTIN_HEX5627 DESTIN_HEX5628 DESTIN_HEX5632
3.726040 4.287980 4.676719
DESTIN_HEX5633 DESTIN_HEX5634 DESTIN_HEX5635
4.338418 6.161057 4.930915
DESTIN_HEX5638 DESTIN_HEX5657 DESTIN_HEX5658
4.035543 2.153936 3.016662
DESTIN_HEX5660 DESTIN_HEX5663 DESTIN_HEX5664
2.407783 3.951987 2.172470
DESTIN_HEX5666 DESTIN_HEX5667 DESTIN_HEX5668
0.592599 2.137045 2.092545
DESTIN_HEX5669 DESTIN_HEX5670 DESTIN_HEX5671
3.706927 2.611228 3.691294
DESTIN_HEX5672 DESTIN_HEX5673 DESTIN_HEX5674
5.100766 3.106708 3.763978
DESTIN_HEX5675 DESTIN_HEX5678 DESTIN_HEX5679
3.353470 2.912673 1.661247
DESTIN_HEX5680 DESTIN_HEX5681 DESTIN_HEX5682
3.718051 3.195623 3.795092
DESTIN_HEX5685 DESTIN_HEX5705 DESTIN_HEX5706
4.644107 2.491829 4.228879
DESTIN_HEX5707 DESTIN_HEX5708 DESTIN_HEX5709
3.431774 3.168990 3.927401
DESTIN_HEX5711 DESTIN_HEX5713 DESTIN_HEX5714
3.421377 2.821117 3.328035
DESTIN_HEX5715 DESTIN_HEX5716 DESTIN_HEX5717
3.004294 3.694331 3.470043
DESTIN_HEX5718 DESTIN_HEX5719 DESTIN_HEX5720
2.772507 3.916627 4.333165
DESTIN_HEX5721 DESTIN_HEX5722 DESTIN_HEX5726
3.936125 2.067777 5.029702
DESTIN_HEX5727 DESTIN_HEX5728 DESTIN_HEX5751
3.110611 2.883835 2.722494
DESTIN_HEX5752 DESTIN_HEX5753 DESTIN_HEX5754
3.223856 4.061843 3.424926
DESTIN_HEX5755 DESTIN_HEX5757 DESTIN_HEX5758
2.864734 3.502580 2.932514
DESTIN_HEX5759 DESTIN_HEX5760 DESTIN_HEX5761
3.304607 1.447239 2.608752
DESTIN_HEX5762 DESTIN_HEX5763 DESTIN_HEX5764
2.168456 3.123823 2.903045
DESTIN_HEX5765 DESTIN_HEX5767 DESTIN_HEX5768
3.326197 4.951577 3.078826
DESTIN_HEX5772 DESTIN_HEX5773 DESTIN_HEX5774
3.391122 2.916365 3.156414
DESTIN_HEX5775 DESTIN_HEX5776 DESTIN_HEX5799
5.277472 3.987092 3.504078
DESTIN_HEX5800 DESTIN_HEX5801 DESTIN_HEX5802
3.282190 2.342160 2.987553
DESTIN_HEX5803 DESTIN_HEX5806 DESTIN_HEX5807
3.038595 3.997340 4.335173
DESTIN_HEX5808 DESTIN_HEX5811 DESTIN_HEX5812
3.221126 2.921747 2.996718
DESTIN_HEX5813 DESTIN_HEX5814 DESTIN_HEX5815
4.276257 2.562420 4.087412
DESTIN_HEX5816 DESTIN_HEX5820 DESTIN_HEX5821
2.191815 5.072292 4.279570
DESTIN_HEX5823 DESTIN_HEX583 DESTIN_HEX584
3.738261 1.540535 3.218529
DESTIN_HEX5846 DESTIN_HEX5847 DESTIN_HEX5848
2.837619 4.107401 3.360938
DESTIN_HEX5849 DESTIN_HEX585 DESTIN_HEX5851
4.461579 3.106238 2.560510
DESTIN_HEX5852 DESTIN_HEX5853 DESTIN_HEX5854
3.386126 2.745198 4.193705
DESTIN_HEX5855 DESTIN_HEX5856 DESTIN_HEX5858
4.182036 1.899521 5.432996
DESTIN_HEX5859 DESTIN_HEX586 DESTIN_HEX5860
4.501398 4.392823 3.323494
DESTIN_HEX5861 DESTIN_HEX5862 DESTIN_HEX5863
3.312542 3.315738 2.366274
DESTIN_HEX5867 DESTIN_HEX5868 DESTIN_HEX5869
5.287660 5.163154 2.262415
DESTIN_HEX587 DESTIN_HEX5893 DESTIN_HEX5894
2.287568 2.795961 2.872491
DESTIN_HEX5895 DESTIN_HEX5898 DESTIN_HEX5899
3.842322 1.185498 2.447878
DESTIN_HEX5901 DESTIN_HEX5902 DESTIN_HEX5903
3.695782 3.922784 4.706021
DESTIN_HEX5904 DESTIN_HEX5905 DESTIN_HEX5906
3.424965 3.118850 3.989783
DESTIN_HEX5907 DESTIN_HEX5908 DESTIN_HEX5909
5.562808 3.020636 5.334362
DESTIN_HEX5910 DESTIN_HEX5914 DESTIN_HEX5915
1.757461 4.214271 4.284544
DESTIN_HEX5916 DESTIN_HEX5940 DESTIN_HEX5941
4.811016 2.996918 2.000096
DESTIN_HEX5942 DESTIN_HEX5943 DESTIN_HEX5944
2.731500 3.882329 4.284322
DESTIN_HEX5945 DESTIN_HEX5946 DESTIN_HEX5947
3.028685 2.410775 3.669853
DESTIN_HEX5948 DESTIN_HEX5949 DESTIN_HEX5950
5.447624 3.942750 4.114671
DESTIN_HEX5951 DESTIN_HEX5954 DESTIN_HEX5955
5.167774 4.672978 2.495076
DESTIN_HEX5956 DESTIN_HEX5957 DESTIN_HEX5961
1.768883 2.663354 4.152152
DESTIN_HEX5962 DESTIN_HEX5963 DESTIN_HEX5987
3.989320 1.712785 -1.412276
DESTIN_HEX5988 DESTIN_HEX5989 DESTIN_HEX5990
3.091919 2.022408 3.479868
DESTIN_HEX5991 DESTIN_HEX5993 DESTIN_HEX5995
3.539290 4.086350 3.132192
DESTIN_HEX5996 DESTIN_HEX5997 DESTIN_HEX5998
3.461867 3.391244 3.163911
DESTIN_HEX5999 DESTIN_HEX6000 DESTIN_HEX6001
3.521403 3.869137 5.060772
DESTIN_HEX6002 DESTIN_HEX6009 DESTIN_HEX6010
3.596317 3.276524 3.863115
DESTIN_HEX6034 DESTIN_HEX6035 DESTIN_HEX6036
2.166309 2.838256 2.973296
DESTIN_HEX6037 DESTIN_HEX6038 DESTIN_HEX6039
3.013316 3.951109 3.832221
DESTIN_HEX6040 DESTIN_HEX6041 DESTIN_HEX6042
3.172213 4.281318 3.765882
DESTIN_HEX6043 DESTIN_HEX6044 DESTIN_HEX6045
4.593982 3.500906 2.494644
DESTIN_HEX6046 DESTIN_HEX6047 DESTIN_HEX6048
1.683082 4.087004 4.565646
DESTIN_HEX6051 DESTIN_HEX6056 DESTIN_HEX6082
2.820708 4.055764 2.330997
DESTIN_HEX6083 DESTIN_HEX6084 DESTIN_HEX6085
2.428023 2.692379 4.085448
DESTIN_HEX6086 DESTIN_HEX6088 DESTIN_HEX6089
4.218188 4.404831 3.510937
DESTIN_HEX6090 DESTIN_HEX6091 DESTIN_HEX6092
4.584209 4.314071 5.054086
DESTIN_HEX6093 DESTIN_HEX6094 DESTIN_HEX6095
2.531629 5.122627 4.896176
DESTIN_HEX6096 DESTIN_HEX6128 DESTIN_HEX6130
4.816254 0.744247 2.190619
DESTIN_HEX6131 DESTIN_HEX6132 DESTIN_HEX6133
3.409432 3.555066 4.326136
DESTIN_HEX6134 DESTIN_HEX6135 DESTIN_HEX6136
3.229366 4.490723 4.865899
DESTIN_HEX6137 DESTIN_HEX6140 DESTIN_HEX6141
4.397471 3.171083 5.187910
DESTIN_HEX6142 DESTIN_HEX6145 DESTIN_HEX6150
4.508990 3.766156 2.550405
DESTIN_HEX6174 DESTIN_HEX6175 DESTIN_HEX6176
2.697556 -0.909153 2.898547
DESTIN_HEX6177 DESTIN_HEX6178 DESTIN_HEX6179
1.553518 3.453140 2.793137
DESTIN_HEX6180 DESTIN_HEX6181 DESTIN_HEX6183
2.223929 3.336830 4.201434
DESTIN_HEX6184 DESTIN_HEX6185 DESTIN_HEX6186
5.460446 3.211330 0.514967
DESTIN_HEX6188 DESTIN_HEX6189 DESTIN_HEX6192
2.945283 4.425916 2.237349
DESTIN_HEX6195 DESTIN_HEX6222 DESTIN_HEX6223
-0.059246 -2.060256 3.615378
DESTIN_HEX6224 DESTIN_HEX6226 DESTIN_HEX6227
2.558221 3.729503 3.530134
DESTIN_HEX6228 DESTIN_HEX6229 DESTIN_HEX6230
3.886513 3.717838 4.662308
DESTIN_HEX6231 DESTIN_HEX6232 DESTIN_HEX6233
4.919777 0.542472 3.012210
DESTIN_HEX6234 DESTIN_HEX6235 DESTIN_HEX6237
2.464058 3.327820 1.245534
DESTIN_HEX6239 DESTIN_HEX6241 DESTIN_HEX6242
3.207538 1.345306 -0.409595
DESTIN_HEX6272 DESTIN_HEX6273 DESTIN_HEX6274
2.502352 3.481679 3.899745
DESTIN_HEX6275 DESTIN_HEX6276 DESTIN_HEX6278
3.184952 5.012575 5.414231
DESTIN_HEX6279 DESTIN_HEX6280 DESTIN_HEX6281
2.294613 2.501641 3.099980
DESTIN_HEX6283 DESTIN_HEX6284 DESTIN_HEX6286
2.303566 2.755704 2.127995
DESTIN_HEX6289 DESTIN_HEX6290 DESTIN_HEX630
0.870030 1.485893 2.971071
DESTIN_HEX6315 DESTIN_HEX6316 DESTIN_HEX632
3.045581 0.735120 5.470972
DESTIN_HEX6320 DESTIN_HEX6321 DESTIN_HEX6322
3.547056 3.771247 4.681096
DESTIN_HEX6323 DESTIN_HEX6324 DESTIN_HEX6326
4.233062 1.936290 2.394633
DESTIN_HEX6327 DESTIN_HEX6328 DESTIN_HEX633
2.676746 3.449234 2.281978
DESTIN_HEX6330 DESTIN_HEX6331 DESTIN_HEX6337
3.050042 3.263806 0.752342
DESTIN_HEX635 DESTIN_HEX6364 DESTIN_HEX6368
5.132679 1.802608 2.494077
DESTIN_HEX6369 DESTIN_HEX6370 DESTIN_HEX6371
2.074903 4.195587 4.401902
DESTIN_HEX6372 DESTIN_HEX6373 DESTIN_HEX6374
4.420986 2.266870 2.844077
DESTIN_HEX6375 DESTIN_HEX6376 DESTIN_HEX6377
3.326354 4.640381 2.549630
DESTIN_HEX6378 DESTIN_HEX6380 DESTIN_HEX6382
3.219081 2.702846 0.981103
DESTIN_HEX6385 DESTIN_HEX6413 DESTIN_HEX6415
1.289847 4.249192 2.589603
DESTIN_HEX6416 DESTIN_HEX6417 DESTIN_HEX6418
1.979914 4.052719 4.909290
DESTIN_HEX6420 DESTIN_HEX6421 DESTIN_HEX6422
2.845769 3.418703 2.789567
DESTIN_HEX6423 DESTIN_HEX6424 DESTIN_HEX6425
0.570630 1.557036 2.965132
DESTIN_HEX6427 DESTIN_HEX6429 DESTIN_HEX6458
2.538698 1.037522 0.849737
DESTIN_HEX6463 DESTIN_HEX6464 DESTIN_HEX6465
4.351718 4.508156 3.874245
DESTIN_HEX6466 DESTIN_HEX6467 DESTIN_HEX6468
4.067760 2.748545 3.507894
DESTIN_HEX6469 DESTIN_HEX6470 DESTIN_HEX6471
4.181964 2.549344 4.811854
DESTIN_HEX6472 DESTIN_HEX6474 DESTIN_HEX6475
3.002076 4.780504 2.950544
DESTIN_HEX6476 DESTIN_HEX6477 DESTIN_HEX6507
4.320466 2.128696 4.395623
DESTIN_HEX6509 DESTIN_HEX6510 DESTIN_HEX6511
4.307596 2.118605 4.271903
DESTIN_HEX6513 DESTIN_HEX6514 DESTIN_HEX6515
4.741392 3.551122 5.463166
DESTIN_HEX6516 DESTIN_HEX6517 DESTIN_HEX6518
3.929950 3.844054 5.331585
DESTIN_HEX6519 DESTIN_HEX6520 DESTIN_HEX6521
2.651107 4.370696 4.447581
DESTIN_HEX6522 DESTIN_HEX6523 DESTIN_HEX6524
2.874517 1.052047 1.706155
DESTIN_HEX6555 DESTIN_HEX6556 DESTIN_HEX6557
4.460451 2.650678 3.278037
DESTIN_HEX6558 DESTIN_HEX6559 DESTIN_HEX6561
2.630158 3.146452 2.613584
DESTIN_HEX6562 DESTIN_HEX6563 DESTIN_HEX6564
4.482598 3.141982 3.554157
DESTIN_HEX6565 DESTIN_HEX6566 DESTIN_HEX6568
4.579219 3.285032 4.319691
DESTIN_HEX6569 DESTIN_HEX6570 DESTIN_HEX6571
3.791898 4.961816 0.987501
DESTIN_HEX6601 DESTIN_HEX6603 DESTIN_HEX6605
2.567104 4.111548 2.449455
DESTIN_HEX6606 DESTIN_HEX6607 DESTIN_HEX6608
3.388558 3.048087 3.014247
DESTIN_HEX6609 DESTIN_HEX6610 DESTIN_HEX6611
3.549871 2.179857 3.233196
DESTIN_HEX6612 DESTIN_HEX6613 DESTIN_HEX6614
4.557946 3.412644 1.581882
DESTIN_HEX6615 DESTIN_HEX6616 DESTIN_HEX6649
4.801198 4.877795 0.208886
DESTIN_HEX6650 DESTIN_HEX6651 DESTIN_HEX6652
3.456567 4.085431 1.389010
DESTIN_HEX6653 DESTIN_HEX6654 DESTIN_HEX6655
2.933487 4.954892 3.886382
DESTIN_HEX6656 DESTIN_HEX6657 DESTIN_HEX6659
2.469074 4.077895 3.915815
DESTIN_HEX6660 DESTIN_HEX6661 DESTIN_HEX6663
4.892278 3.690813 4.496568
DESTIN_HEX6695 DESTIN_HEX6696 DESTIN_HEX6697
1.682457 1.227489 4.501212
DESTIN_HEX6698 DESTIN_HEX6699 DESTIN_HEX6700
3.850539 1.919145 3.898456
DESTIN_HEX6702 DESTIN_HEX6703 DESTIN_HEX6706
3.124179 4.199270 4.164365
DESTIN_HEX6707 DESTIN_HEX6708 DESTIN_HEX6709
4.737276 5.140361 4.167301
DESTIN_HEX6744 DESTIN_HEX6745 DESTIN_HEX6746
2.933979 4.823423 3.820948
DESTIN_HEX6747 DESTIN_HEX6749 DESTIN_HEX6750
3.244469 3.060398 3.069361
DESTIN_HEX6751 DESTIN_HEX6753 DESTIN_HEX6754
3.068613 4.411683 4.860266
DESTIN_HEX6755 DESTIN_HEX6757 DESTIN_HEX678
4.774918 4.714177 1.116856
DESTIN_HEX6789 DESTIN_HEX679 DESTIN_HEX6790
3.350293 2.131223 4.114785
DESTIN_HEX6791 DESTIN_HEX6792 DESTIN_HEX6793
3.938149 2.900804 3.541162
DESTIN_HEX6794 DESTIN_HEX6796 DESTIN_HEX6797
3.263110 2.666353 4.288651
DESTIN_HEX6798 DESTIN_HEX680 DESTIN_HEX6800
2.869259 -0.047604 4.752760
DESTIN_HEX6801 DESTIN_HEX6802 DESTIN_HEX681
4.358814 4.718417 1.696395
DESTIN_HEX682 DESTIN_HEX6837 DESTIN_HEX6838
3.252382 3.544971 4.160045
DESTIN_HEX6839 DESTIN_HEX6841 DESTIN_HEX6843
4.367769 4.207336 2.796294
DESTIN_HEX6846 DESTIN_HEX6847 DESTIN_HEX6848
4.772724 3.863658 3.666921
DESTIN_HEX6850 DESTIN_HEX6851 DESTIN_HEX6885
4.328784 4.310878 3.736440
DESTIN_HEX6886 DESTIN_HEX6887 DESTIN_HEX6888
3.862276 3.666466 3.500949
DESTIN_HEX6889 DESTIN_HEX6891 DESTIN_HEX6892
3.127904 5.042587 3.450400
DESTIN_HEX6893 DESTIN_HEX6894 DESTIN_HEX6895
4.851118 4.363632 4.946476
DESTIN_HEX6896 DESTIN_HEX6897 DESTIN_HEX6898
1.829313 5.430966 2.593809
DESTIN_HEX6931 DESTIN_HEX6932 DESTIN_HEX6933
3.275579 4.530725 2.656719
DESTIN_HEX6934 DESTIN_HEX6935 DESTIN_HEX6936
1.894406 3.354669 4.200157
DESTIN_HEX6938 DESTIN_HEX6939 DESTIN_HEX6940
1.479022 4.487533 3.500669
DESTIN_HEX6941 DESTIN_HEX6942 DESTIN_HEX6943
3.648603 4.209821 3.668199
DESTIN_HEX6944 DESTIN_HEX6945 DESTIN_HEX6946
3.432091 3.686582 5.306487
DESTIN_HEX6979 DESTIN_HEX6980 DESTIN_HEX6981
3.177733 5.159727 3.413935
DESTIN_HEX6982 DESTIN_HEX6984 DESTIN_HEX6985
1.439172 1.712966 4.655276
DESTIN_HEX6986 DESTIN_HEX6987 DESTIN_HEX6988
3.808234 4.743712 5.402220
DESTIN_HEX6989 DESTIN_HEX6990 DESTIN_HEX6991
5.110252 3.199704 4.595012
DESTIN_HEX6992 DESTIN_HEX7025 DESTIN_HEX7026
5.188817 3.070830 3.538897
DESTIN_HEX7027 DESTIN_HEX7029 DESTIN_HEX7030
4.156221 3.812198 2.938219
DESTIN_HEX7031 DESTIN_HEX7033 DESTIN_HEX7034
1.558390 3.227114 4.155727
DESTIN_HEX7035 DESTIN_HEX7036 DESTIN_HEX7037
3.362618 3.872495 5.165650
DESTIN_HEX7038 DESTIN_HEX7039 DESTIN_HEX7040
4.190070 4.295476 5.744356
DESTIN_HEX7072 DESTIN_HEX7073 DESTIN_HEX7074
3.179494 3.473587 4.046274
DESTIN_HEX7075 DESTIN_HEX7076 DESTIN_HEX7077
2.169745 2.359161 2.637294
DESTIN_HEX7081 DESTIN_HEX7082 DESTIN_HEX7083
4.342963 2.917042 3.630027
DESTIN_HEX7084 DESTIN_HEX7085 DESTIN_HEX7086
4.562461 5.312009 4.755701
DESTIN_HEX7087 DESTIN_HEX7119 DESTIN_HEX7120
4.992759 3.556804 3.503517
DESTIN_HEX7123 DESTIN_HEX7124 DESTIN_HEX7125
1.718489 3.632890 2.894625
DESTIN_HEX7128 DESTIN_HEX7129 DESTIN_HEX7130
1.720396 3.938325 3.786226
DESTIN_HEX7131 DESTIN_HEX7132 DESTIN_HEX7133
4.353008 4.334132 3.045996
DESTIN_HEX7134 DESTIN_HEX7135 DESTIN_HEX7166
5.043491 4.887392 3.571828
DESTIN_HEX7167 DESTIN_HEX7168 DESTIN_HEX7169
3.917807 3.623274 1.803171
DESTIN_HEX7170 DESTIN_HEX7172 DESTIN_HEX7173
3.942481 2.395805 3.104703
DESTIN_HEX7175 DESTIN_HEX7176 DESTIN_HEX7177
3.659462 4.288562 4.326463
DESTIN_HEX7178 DESTIN_HEX7179 DESTIN_HEX7181
4.718874 4.429119 3.512504
DESTIN_HEX7182 DESTIN_HEX7213 DESTIN_HEX7214
2.777079 4.056257 3.559326
DESTIN_HEX7215 DESTIN_HEX7217 DESTIN_HEX7218
3.673376 4.720132 3.465954
DESTIN_HEX7222 DESTIN_HEX7223 DESTIN_HEX7224
1.703596 3.493678 4.908233
DESTIN_HEX7225 DESTIN_HEX7226 DESTIN_HEX7227
2.847793 4.370361 5.118873
DESTIN_HEX7228 DESTIN_HEX7229 DESTIN_HEX723
5.378461 3.001434 5.643181
DESTIN_HEX7230 DESTIN_HEX725 DESTIN_HEX726
4.266665 2.660921 2.278061
DESTIN_HEX7260 DESTIN_HEX7261 DESTIN_HEX7262
4.000188 3.477563 4.425708
DESTIN_HEX7264 DESTIN_HEX7265 DESTIN_HEX727
4.499389 3.152992 3.311477
DESTIN_HEX7271 DESTIN_HEX7272 DESTIN_HEX7273
4.677017 4.509064 4.611996
DESTIN_HEX7274 DESTIN_HEX7275 DESTIN_HEX7277
4.420724 4.396126 5.534651
DESTIN_HEX728 DESTIN_HEX7307 DESTIN_HEX7308
1.462661 5.039592 3.887137
DESTIN_HEX7309 DESTIN_HEX731 DESTIN_HEX7310
3.615217 1.290530 4.991248
DESTIN_HEX7311 DESTIN_HEX7312 DESTIN_HEX7316
4.297197 2.943226 0.709071
DESTIN_HEX7319 DESTIN_HEX7320 DESTIN_HEX7321
2.946397 3.767922 6.334334
DESTIN_HEX7322 DESTIN_HEX7323 DESTIN_HEX7324
3.947402 3.068809 2.200935
DESTIN_HEX7354 DESTIN_HEX7355 DESTIN_HEX7356
3.473453 3.930117 3.235233
DESTIN_HEX7358 DESTIN_HEX7359 DESTIN_HEX7363
4.097268 2.222180 2.131695
DESTIN_HEX7366 DESTIN_HEX7367 DESTIN_HEX7368
4.263979 4.374363 4.042753
DESTIN_HEX7369 DESTIN_HEX7371 DESTIN_HEX7402
2.899032 2.029499 3.345280
DESTIN_HEX7403 DESTIN_HEX7404 DESTIN_HEX7406
3.317015 2.723656 4.876100
DESTIN_HEX7411 DESTIN_HEX7414 DESTIN_HEX7415
2.287844 5.238970 3.828234
DESTIN_HEX7416 DESTIN_HEX7418 DESTIN_HEX7448
4.196048 -0.249919 4.320075
DESTIN_HEX7449 DESTIN_HEX7450 DESTIN_HEX7451
4.018957 4.295648 3.414997
DESTIN_HEX7452 DESTIN_HEX7453 DESTIN_HEX7458
5.265288 1.988716 1.929544
DESTIN_HEX7461 DESTIN_HEX7462 DESTIN_HEX7463
4.059574 4.797977 5.513973
DESTIN_HEX7465 DESTIN_HEX7496 DESTIN_HEX7498
4.270713 3.824271 4.324409
DESTIN_HEX7499 DESTIN_HEX7500 DESTIN_HEX7501
5.275641 4.258167 2.034017
DESTIN_HEX7506 DESTIN_HEX7509 DESTIN_HEX7510
0.685718 5.168585 3.972661
DESTIN_HEX7542 DESTIN_HEX7543 DESTIN_HEX7544
4.646184 2.886156 2.507924
DESTIN_HEX7545 DESTIN_HEX7546 DESTIN_HEX7547
2.894553 4.920285 4.051167
DESTIN_HEX7553 DESTIN_HEX7555 DESTIN_HEX7556
-0.194925 3.797735 3.803344
DESTIN_HEX7590 DESTIN_HEX7591 DESTIN_HEX7592
2.936958 0.161755 3.198596
DESTIN_HEX7594 DESTIN_HEX7595 DESTIN_HEX7603
4.489857 0.879255 3.002148
DESTIN_HEX7604 DESTIN_HEX7637 DESTIN_HEX7638
5.314773 2.519203 1.639462
DESTIN_HEX7639 DESTIN_HEX7641 DESTIN_HEX7647
4.251150 3.584329 0.979978
DESTIN_HEX7650 DESTIN_HEX7684 DESTIN_HEX7685
5.263694 3.297677 2.725447
DESTIN_HEX7686 DESTIN_HEX7687 DESTIN_HEX7694
4.136191 4.459324 3.126119
DESTIN_HEX770 DESTIN_HEX771 DESTIN_HEX773
4.262195 -0.550527 2.346175
DESTIN_HEX7731 DESTIN_HEX7732 DESTIN_HEX7733
3.475218 3.539671 4.577166
DESTIN_HEX7734 DESTIN_HEX7735 DESTIN_HEX7740
5.571465 4.680107 0.960854
DESTIN_HEX775 DESTIN_HEX777 DESTIN_HEX7778
3.005493 0.926771 3.771064
DESTIN_HEX7779 DESTIN_HEX778 DESTIN_HEX7780
2.801780 1.805080 4.158760
DESTIN_HEX7781 DESTIN_HEX7787 DESTIN_HEX779
5.079275 1.896746 2.425890
DESTIN_HEX7825 DESTIN_HEX7826 DESTIN_HEX7828
3.430439 4.254651 5.331552
DESTIN_HEX7829 DESTIN_HEX7831 DESTIN_HEX7833
4.028028 3.329300 1.674015
DESTIN_HEX7834 DESTIN_HEX7872 DESTIN_HEX7873
1.881086 3.782676 2.928203
DESTIN_HEX7874 DESTIN_HEX7875 DESTIN_HEX7876
4.570602 3.751502 4.513224
DESTIN_HEX7878 DESTIN_HEX7879 DESTIN_HEX7881
5.026533 2.514670 2.459191
DESTIN_HEX7919 DESTIN_HEX7920 DESTIN_HEX7921
3.159697 2.030988 5.855011
DESTIN_HEX7922 DESTIN_HEX7923 DESTIN_HEX7925
4.750972 3.858075 4.504450
DESTIN_HEX7926 DESTIN_HEX7927 DESTIN_HEX7928
3.247137 3.977551 4.064549
DESTIN_HEX7967 DESTIN_HEX7968 DESTIN_HEX7969
2.726575 1.737312 3.701111
DESTIN_HEX7970 DESTIN_HEX7972 DESTIN_HEX7973
4.806094 4.765098 5.279707
DESTIN_HEX7974 DESTIN_HEX7976 DESTIN_HEX8013
3.919916 4.709924 4.043408
DESTIN_HEX8014 DESTIN_HEX8015 DESTIN_HEX8016
3.923450 4.465267 4.780293
DESTIN_HEX8017 DESTIN_HEX8018 DESTIN_HEX8019
4.202639 3.645675 4.862858
DESTIN_HEX8020 DESTIN_HEX8021 DESTIN_HEX8023
4.643608 3.435187 5.529111
DESTIN_HEX8061 DESTIN_HEX8062 DESTIN_HEX8063
3.359563 3.617550 3.925736
DESTIN_HEX8065 DESTIN_HEX8066 DESTIN_HEX8067
1.492068 3.577083 4.305582
DESTIN_HEX8068 DESTIN_HEX8070 DESTIN_HEX8071
5.049595 4.137568 3.277774
DESTIN_HEX8108 DESTIN_HEX8109 DESTIN_HEX8110
3.028855 4.568088 5.251864
DESTIN_HEX8112 DESTIN_HEX8113 DESTIN_HEX8114
4.666181 3.866658 4.269615
DESTIN_HEX8115 DESTIN_HEX8116 DESTIN_HEX8117
4.524722 3.499233 4.165884
DESTIN_HEX8155 DESTIN_HEX8156 DESTIN_HEX8157
3.956453 3.877814 4.878435
DESTIN_HEX8158 DESTIN_HEX8160 DESTIN_HEX8161
3.806453 4.278471 3.748676
DESTIN_HEX8162 DESTIN_HEX8163 DESTIN_HEX8164
4.533055 4.089768 4.142505
DESTIN_HEX8165 DESTIN_HEX818 DESTIN_HEX819
3.983319 3.172195 2.871507
DESTIN_HEX820 DESTIN_HEX8203 DESTIN_HEX8207
2.388386 4.548906 4.526246
DESTIN_HEX8208 DESTIN_HEX8209 DESTIN_HEX8210
2.689552 4.853052 4.523534
DESTIN_HEX8211 DESTIN_HEX823 DESTIN_HEX824
5.104189 2.673253 3.492647
DESTIN_HEX8249 DESTIN_HEX825 DESTIN_HEX8250
2.645354 0.836546 4.832411
DESTIN_HEX8252 DESTIN_HEX8254 DESTIN_HEX8255
2.394940 3.993045 5.946852
DESTIN_HEX8256 DESTIN_HEX8258 DESTIN_HEX8259
3.866743 3.522489 2.132961
DESTIN_HEX826 DESTIN_HEX827 DESTIN_HEX828
0.812886 5.279107 3.145135
DESTIN_HEX8296 DESTIN_HEX8297 DESTIN_HEX8298
3.935007 5.245973 3.901539
DESTIN_HEX8299 DESTIN_HEX8300 DESTIN_HEX8301
1.975025 2.959926 4.423813
DESTIN_HEX8302 DESTIN_HEX8304 DESTIN_HEX8305
3.525896 4.084234 2.466527
DESTIN_HEX8344 DESTIN_HEX8345 DESTIN_HEX8346
2.869580 4.489238 2.128779
DESTIN_HEX8347 DESTIN_HEX8348 DESTIN_HEX8349
4.371697 4.246721 3.226941
DESTIN_HEX8351 DESTIN_HEX8352 DESTIN_HEX8353
3.752957 2.939601 2.524785
DESTIN_HEX8389 DESTIN_HEX8390 DESTIN_HEX8391
3.368545 2.177593 2.062215
DESTIN_HEX8392 DESTIN_HEX8393 DESTIN_HEX8394
2.335908 3.148335 3.441021
DESTIN_HEX8395 DESTIN_HEX8396 DESTIN_HEX8398
3.077094 4.224444 5.607132
DESTIN_HEX8439 DESTIN_HEX8440 DESTIN_HEX8441
2.936098 3.375563 5.076888
DESTIN_HEX8442 DESTIN_HEX8443 DESTIN_HEX8444
4.187927 4.577425 4.914531
DESTIN_HEX8445 DESTIN_HEX8484 DESTIN_HEX8485
4.022784 2.676235 2.639026
DESTIN_HEX8486 DESTIN_HEX8488 DESTIN_HEX8489
2.420409 3.310384 4.981806
DESTIN_HEX8490 DESTIN_HEX8532 DESTIN_HEX8534
3.516090 4.103957 1.974126
DESTIN_HEX8535 DESTIN_HEX8536 DESTIN_HEX8537
3.893380 3.450181 4.823229
DESTIN_HEX8538 DESTIN_HEX8539 DESTIN_HEX8540
5.192026 4.845422 4.616494
DESTIN_HEX8580 DESTIN_HEX8581 DESTIN_HEX8582
3.014003 1.006853 4.883081
DESTIN_HEX8583 DESTIN_HEX8584 DESTIN_HEX8585
4.161150 4.682032 4.044679
DESTIN_HEX8586 DESTIN_HEX8587 DESTIN_HEX8628
4.429718 5.031460 2.057552
DESTIN_HEX8629 DESTIN_HEX8631 DESTIN_HEX8633
4.165277 5.030084 4.645113
DESTIN_HEX8634 DESTIN_HEX866 DESTIN_HEX867
4.386412 1.212021 2.738903
DESTIN_HEX8674 DESTIN_HEX8675 DESTIN_HEX8676
2.630184 1.909263 3.548578
DESTIN_HEX8677 DESTIN_HEX8679 DESTIN_HEX8680
4.837473 4.241349 5.280697
DESTIN_HEX8681 DESTIN_HEX870 DESTIN_HEX872
5.319091 2.956168 5.000253
DESTIN_HEX8721 DESTIN_HEX8722 DESTIN_HEX8723
-0.899206 4.613156 1.482555
DESTIN_HEX8724 DESTIN_HEX8725 DESTIN_HEX8726
4.009962 5.498311 4.055204
DESTIN_HEX8727 DESTIN_HEX8728 DESTIN_HEX873
4.119307 3.518273 -0.310447
DESTIN_HEX874 DESTIN_HEX8768 DESTIN_HEX8769
1.256921 0.305644 1.708929
DESTIN_HEX8771 DESTIN_HEX8772 DESTIN_HEX8773
3.421797 5.182754 4.466746
DESTIN_HEX8774 DESTIN_HEX8775 DESTIN_HEX8815
2.993404 2.705393 2.758938
DESTIN_HEX8816 DESTIN_HEX8817 DESTIN_HEX8818
2.633945 1.418880 2.727873
DESTIN_HEX8819 DESTIN_HEX8820 DESTIN_HEX8862
3.731896 2.680923 1.556724
DESTIN_HEX8864 DESTIN_HEX8865 DESTIN_HEX8866
3.447902 2.789398 4.300739
DESTIN_HEX8867 DESTIN_HEX8868 DESTIN_HEX8910
2.231333 2.856633 2.367386
DESTIN_HEX8912 DESTIN_HEX8914 DESTIN_HEX8915
2.165090 2.930028 3.005237
DESTIN_HEX8916 DESTIN_HEX8917 DESTIN_HEX8959
1.994902 2.000103 2.670687
DESTIN_HEX8961 DESTIN_HEX8962 DESTIN_HEX8963
1.090554 4.434702 0.860711
DESTIN_HEX8964 DESTIN_HEX9007 DESTIN_HEX9008
2.110800 3.130017 3.296397
DESTIN_HEX9010 DESTIN_HEX9011 DESTIN_HEX9055
2.183768 1.266038 2.239909
DESTIN_HEX9056 DESTIN_HEX9057 DESTIN_HEX9103
1.147209 1.958921 4.112103
DESTIN_HEX9105 DESTIN_HEX9106 DESTIN_HEX914
0.237506 1.935979 2.482588
DESTIN_HEX9145 DESTIN_HEX9150 DESTIN_HEX9152
3.036572 1.537170 2.510228
DESTIN_HEX9153 DESTIN_HEX917 DESTIN_HEX919
1.995798 1.386993 2.611186
DESTIN_HEX9193 DESTIN_HEX920 DESTIN_HEX9200
4.409097 2.475983 2.251822
DESTIN_HEX9240 DESTIN_HEX9246 DESTIN_HEX9247
2.876733 3.454556 1.498770
DESTIN_HEX9283 DESTIN_HEX9289 DESTIN_HEX9294
5.995056 5.246427 4.282646
DESTIN_HEX9340 DESTIN_HEX9383 DESTIN_HEX9384
3.314723 3.773648 5.357045
DESTIN_HEX9388 DESTIN_HEX9432 DESTIN_HEX9471
3.547093 3.073919 5.317497
DESTIN_HEX9480 DESTIN_HEX9482 DESTIN_HEX9526
2.930234 1.407781 2.661234
DESTIN_HEX9527 DESTIN_HEX9575 DESTIN_HEX9576
2.573861 3.287680 1.593254
DESTIN_HEX9621 DESTIN_HEX9622 DESTIN_HEX965
2.204027 4.332383 2.271311
DESTIN_HEX966 DESTIN_HEX9668 DESTIN_HEX9714
1.185902 3.104254 3.150867
DESTIN_HEX9988 log(bus_stop_count) log(business_count)
3.501863 0.366795 0.002257
log(school_count) log(finserv_count) log(dist)
-0.273443 0.493462 -1.081710
Degrees of Freedom: 161670 Total (i.e. Null); 159856 Residual
Null Deviance: 96290000
Residual Deviance: 45520000 AIC: 46310000
CalcRSquared(decSIM$data$WEEKDAY_AFTERNOON_PEAK, decSIM$fitted.values)
[1] 0.1856562
r2_mcfadden(decSIM)
# R2 for Generalized Linear Regression
R2: 0.523
adj. R2: 0.523
11.8Doubly Constrained Spatial Interaction Model
The doubly constrained model ensures that the predicted flows both from origins (Oi) and to destinations (Dj) match observed totals by applying balancing factors (Ai for origins and Bj for destinations) along with the influence of distance (dij).
The code chunk is changed correspondingly as below:
<- glm(formula = WEEKDAY_AFTERNOON_PEAK ~
dbcSIM +
ORIGIN_HEX +
DESTIN_HEX log(dist),
family = poisson(link = "log"),
data = SIM_data,
na.action = na.exclude)
write_rds(dbcSIM, "data/rds/dbcSIM.rds")
<- read_rds("data/rds/dbcSIM.rds")
dbcSIM dbcSIM
Call: glm(formula = WEEKDAY_AFTERNOON_PEAK ~ ORIGIN_HEX + DESTIN_HEX +
log(dist), family = poisson(link = "log"), data = SIM_data,
na.action = na.exclude)
Coefficients:
(Intercept) ORIGIN_HEX1012 ORIGIN_HEX1013 ORIGIN_HEX1014 ORIGIN_HEX1058
8.7209518 -0.8816039 0.3264009 0.5528511 -4.2027183
ORIGIN_HEX1059 ORIGIN_HEX1060 ORIGIN_HEX1061 ORIGIN_HEX1104 ORIGIN_HEX1106
-0.8834993 -0.8184197 -0.2517575 1.3068727 1.7232583
ORIGIN_HEX1107 ORIGIN_HEX1108 ORIGIN_HEX1152 ORIGIN_HEX1153 ORIGIN_HEX1154
1.2963036 0.3314767 -0.8945535 -0.3790338 1.2225328
ORIGIN_HEX1199 ORIGIN_HEX1200 ORIGIN_HEX1201 ORIGIN_HEX1202 ORIGIN_HEX1244
0.3866662 0.0170405 0.7711185 -0.2608678 1.8840289
ORIGIN_HEX1245 ORIGIN_HEX1246 ORIGIN_HEX1247 ORIGIN_HEX1291 ORIGIN_HEX1292
0.8351036 -0.9986651 -0.4453742 3.1736232 2.0354568
ORIGIN_HEX1293 ORIGIN_HEX1295 ORIGIN_HEX1338 ORIGIN_HEX1339 ORIGIN_HEX1340
1.2543444 0.2428771 0.8689960 0.1273712 0.6762757
ORIGIN_HEX1341 ORIGIN_HEX1385 ORIGIN_HEX1386 ORIGIN_HEX1387 ORIGIN_HEX1388
0.7287095 -0.4290908 -0.8039356 1.1763782 -2.0404032
ORIGIN_HEX1433 ORIGIN_HEX1434 ORIGIN_HEX1479 ORIGIN_HEX1480 ORIGIN_HEX1481
2.0143888 -1.1991310 -0.8311869 2.7097656 0.9206473
ORIGIN_HEX1525 ORIGIN_HEX1526 ORIGIN_HEX1527 ORIGIN_HEX1528 ORIGIN_HEX1529
2.3123863 -1.6994128 1.5654513 0.7268888 1.1298185
ORIGIN_HEX1573 ORIGIN_HEX1574 ORIGIN_HEX1575 ORIGIN_HEX1619 ORIGIN_HEX1621
0.7993031 -0.7847872 1.4151693 1.7549700 1.8292167
ORIGIN_HEX1622 ORIGIN_HEX1623 ORIGIN_HEX1666 ORIGIN_HEX1668 ORIGIN_HEX1669
0.3499279 1.6995988 1.7824566 1.2305950 1.0853798
ORIGIN_HEX1670 ORIGIN_HEX1671 ORIGIN_HEX1715 ORIGIN_HEX1717 ORIGIN_HEX1718
0.9224901 -2.1351114 1.5177545 -0.9589130 1.4066727
ORIGIN_HEX1761 ORIGIN_HEX1762 ORIGIN_HEX1763 ORIGIN_HEX1764 ORIGIN_HEX1765
1.2548218 2.3727262 1.5678580 -3.6796509 -3.2678852
ORIGIN_HEX1768 ORIGIN_HEX1808 ORIGIN_HEX1809 ORIGIN_HEX1810 ORIGIN_HEX1811
-0.8536974 1.3012034 0.3168670 1.7610793 -1.0515278
ORIGIN_HEX1812 ORIGIN_HEX1814 ORIGIN_HEX1815 ORIGIN_HEX1855 ORIGIN_HEX1856
-2.1731163 1.3461223 -0.9429442 1.5090292 -0.6870438
ORIGIN_HEX1857 ORIGIN_HEX1858 ORIGIN_HEX1859 ORIGIN_HEX1861 ORIGIN_HEX1862
1.5554958 1.5752233 2.2672564 1.7770815 2.7393801
ORIGIN_HEX1903 ORIGIN_HEX1904 ORIGIN_HEX1905 ORIGIN_HEX1906 ORIGIN_HEX1907
-0.8666852 0.5686612 -1.7696492 -1.1169968 -0.1870391
ORIGIN_HEX1909 ORIGIN_HEX1950 ORIGIN_HEX1952 ORIGIN_HEX1953 ORIGIN_HEX1955
0.2393178 -2.0166730 0.8261774 -0.7521944 1.6902852
ORIGIN_HEX1956 ORIGIN_HEX1957 ORIGIN_HEX1996 ORIGIN_HEX1997 ORIGIN_HEX1998
0.2549116 -0.2832654 1.0440956 0.6111979 1.5839139
ORIGIN_HEX1999 ORIGIN_HEX2000 ORIGIN_HEX2003 ORIGIN_HEX2046 ORIGIN_HEX2047
0.2076824 -0.6934657 -0.2563373 -0.6966721 0.9169338
ORIGIN_HEX2049 ORIGIN_HEX2050 ORIGIN_HEX2051 ORIGIN_HEX2090 ORIGIN_HEX2092
0.7094799 -0.2517045 1.4592222 0.1226080 1.8144774
ORIGIN_HEX2093 ORIGIN_HEX2094 ORIGIN_HEX2095 ORIGIN_HEX2096 ORIGIN_HEX2139
0.0372445 -0.4725215 -0.2123296 -1.3966118 -2.3919066
ORIGIN_HEX2140 ORIGIN_HEX2141 ORIGIN_HEX2142 ORIGIN_HEX2143 ORIGIN_HEX2145
1.0444239 -0.2526084 -0.0832155 0.6220164 1.3049622
ORIGIN_HEX2146 ORIGIN_HEX2184 ORIGIN_HEX2187 ORIGIN_HEX2189 ORIGIN_HEX2190
-1.7568878 0.5988182 -0.7166690 -1.7363302 -0.2273390
ORIGIN_HEX2192 ORIGIN_HEX2193 ORIGIN_HEX2194 ORIGIN_HEX2232 ORIGIN_HEX2233
-1.5841831 1.0147982 -0.2035817 1.1035831 2.5207924
ORIGIN_HEX2234 ORIGIN_HEX2235 ORIGIN_HEX2236 ORIGIN_HEX2237 ORIGIN_HEX2238
1.3341444 0.5223731 -0.4189055 0.1195772 0.4505333
ORIGIN_HEX2239 ORIGIN_HEX2241 ORIGIN_HEX2242 ORIGIN_HEX2278 ORIGIN_HEX2279
0.3477525 -1.9837702 -0.4601046 0.6558735 1.6491755
ORIGIN_HEX2280 ORIGIN_HEX2281 ORIGIN_HEX2282 ORIGIN_HEX2283 ORIGIN_HEX2284
1.9534411 0.7201561 0.5121989 1.5435672 -0.3015997
ORIGIN_HEX2288 ORIGIN_HEX2289 ORIGIN_HEX2290 ORIGIN_HEX2326 ORIGIN_HEX2327
0.3484395 -1.9297210 -3.6112072 -0.0893153 1.9577353
ORIGIN_HEX2328 ORIGIN_HEX2329 ORIGIN_HEX2330 ORIGIN_HEX2331 ORIGIN_HEX2332
-1.2331475 0.5444172 -0.2233437 0.3653188 0.4255270
ORIGIN_HEX2337 ORIGIN_HEX2340 ORIGIN_HEX2341 ORIGIN_HEX2342 ORIGIN_HEX2372
-1.2782380 -0.9907065 -2.6433477 -1.1216913 0.9814529
ORIGIN_HEX2376 ORIGIN_HEX2377 ORIGIN_HEX2378 ORIGIN_HEX2379 ORIGIN_HEX2382
-2.4525076 -0.0109155 -0.1469967 0.5088682 -3.4260833
ORIGIN_HEX2386 ORIGIN_HEX2387 ORIGIN_HEX2389 ORIGIN_HEX2421 ORIGIN_HEX2422
-1.1410522 -4.8345490 0.1675346 1.3454745 1.6912665
ORIGIN_HEX2423 ORIGIN_HEX2424 ORIGIN_HEX2425 ORIGIN_HEX2426 ORIGIN_HEX2436
0.5081695 -2.5287283 -0.7703610 -0.2444896 1.3520239
ORIGIN_HEX2437 ORIGIN_HEX2466 ORIGIN_HEX2470 ORIGIN_HEX2471 ORIGIN_HEX2472
-1.7656911 0.2967384 0.2476739 3.4823617 0.1996774
ORIGIN_HEX2473 ORIGIN_HEX2476 ORIGIN_HEX2484 ORIGIN_HEX2515 ORIGIN_HEX2516
1.0290881 -3.5923183 -0.8634462 0.5394410 0.3384981
ORIGIN_HEX2518 ORIGIN_HEX2519 ORIGIN_HEX2520 ORIGIN_HEX2532 ORIGIN_HEX2533
-2.0661108 -0.6500691 -0.8567963 -2.6514585 -0.5907515
ORIGIN_HEX2534 ORIGIN_HEX2562 ORIGIN_HEX2563 ORIGIN_HEX2564 ORIGIN_HEX2565
0.1715767 0.4660586 1.0249855 1.1624594 -2.1579728
ORIGIN_HEX2566 ORIGIN_HEX2567 ORIGIN_HEX2570 ORIGIN_HEX2579 ORIGIN_HEX2609
-0.6670936 -0.5841393 -4.4460599 -3.8475879 0.2679958
ORIGIN_HEX2611 ORIGIN_HEX2612 ORIGIN_HEX2613 ORIGIN_HEX2614 ORIGIN_HEX2655
0.4089780 0.3413385 -0.5755350 0.9325439 -0.1399051
ORIGIN_HEX2657 ORIGIN_HEX2658 ORIGIN_HEX2660 ORIGIN_HEX2661 ORIGIN_HEX2664
-0.4819804 1.1086072 0.7749561 -0.7999729 -0.3145292
ORIGIN_HEX2703 ORIGIN_HEX2705 ORIGIN_HEX2706 ORIGIN_HEX2707 ORIGIN_HEX2708
-2.2780829 -0.4296331 0.5679058 -0.2947252 -0.6028177
ORIGIN_HEX2712 ORIGIN_HEX2752 ORIGIN_HEX2753 ORIGIN_HEX2754 ORIGIN_HEX2755
-0.4181695 0.0203860 0.0638822 -0.8243076 0.2394822
ORIGIN_HEX2758 ORIGIN_HEX2797 ORIGIN_HEX2798 ORIGIN_HEX2799 ORIGIN_HEX2800
0.2540154 1.1142654 -0.9927076 -0.3765509 -0.6046303
ORIGIN_HEX2802 ORIGIN_HEX2806 ORIGIN_HEX2843 ORIGIN_HEX2844 ORIGIN_HEX2845
0.9293346 1.0851819 1.5257652 0.1052974 0.9540372
ORIGIN_HEX2846 ORIGIN_HEX2847 ORIGIN_HEX2848 ORIGIN_HEX2849 ORIGIN_HEX2891
-0.3274482 0.3154330 2.7527591 -0.2272054 1.1842863
ORIGIN_HEX2893 ORIGIN_HEX2894 ORIGIN_HEX2895 ORIGIN_HEX2896 ORIGIN_HEX2897
0.5810225 0.8485734 -0.8489711 -0.9345695 -0.5784588
ORIGIN_HEX2900 ORIGIN_HEX2937 ORIGIN_HEX2939 ORIGIN_HEX2940 ORIGIN_HEX2941
0.3397455 0.7216735 0.5879175 0.4106737 -0.5842351
ORIGIN_HEX2942 ORIGIN_HEX2943 ORIGIN_HEX2987 ORIGIN_HEX2988 ORIGIN_HEX2990
-0.9741574 1.0208945 -0.7575184 -0.4785841 0.0113910
ORIGIN_HEX2994 ORIGIN_HEX3031 ORIGIN_HEX3033 ORIGIN_HEX3036 ORIGIN_HEX3084
-2.4137782 1.0174921 -0.1211878 -0.8470012 0.4815712
ORIGIN_HEX3125 ORIGIN_HEX3129 ORIGIN_HEX3130 ORIGIN_HEX3135 ORIGIN_HEX3172
-0.3085989 -2.4442679 0.6247321 -1.4995622 1.7409262
ORIGIN_HEX3173 ORIGIN_HEX3176 ORIGIN_HEX3177 ORIGIN_HEX3182 ORIGIN_HEX3218
1.3913663 -2.6659083 0.8802114 -1.2447531 0.8356201
ORIGIN_HEX3220 ORIGIN_HEX3221 ORIGIN_HEX3223 ORIGIN_HEX3224 ORIGIN_HEX3225
0.6537292 -4.1854492 -0.6891787 0.6795017 -1.3306286
ORIGIN_HEX3229 ORIGIN_HEX3238 ORIGIN_HEX3266 ORIGIN_HEX3268 ORIGIN_HEX3269
0.1414268 -0.7972355 0.9544145 1.3730309 -1.3615251
ORIGIN_HEX3270 ORIGIN_HEX3271 ORIGIN_HEX3272 ORIGIN_HEX3273 ORIGIN_HEX3276
0.7478919 0.2939316 -1.1594053 0.6653300 -0.0961609
ORIGIN_HEX3277 ORIGIN_HEX3312 ORIGIN_HEX3314 ORIGIN_HEX3316 ORIGIN_HEX3317
-0.4367587 0.7183238 -2.6794722 0.3785430 -0.4384030
ORIGIN_HEX3318 ORIGIN_HEX3319 ORIGIN_HEX3320 ORIGIN_HEX3322 ORIGIN_HEX3323
-0.6956684 -0.1440839 0.4724008 -1.9131871 0.0218642
ORIGIN_HEX3325 ORIGIN_HEX3362 ORIGIN_HEX3363 ORIGIN_HEX3364 ORIGIN_HEX3365
-1.8649591 0.0058607 -1.3408512 2.3562344 0.4286837
ORIGIN_HEX3366 ORIGIN_HEX3367 ORIGIN_HEX3368 ORIGIN_HEX3370 ORIGIN_HEX3371
0.4693077 0.0129693 -0.2238115 -0.1973189 -0.4306852
ORIGIN_HEX3372 ORIGIN_HEX3406 ORIGIN_HEX3408 ORIGIN_HEX3409 ORIGIN_HEX3410
-1.6938269 -0.7176414 -0.8730909 0.5361971 0.1814415
ORIGIN_HEX3411 ORIGIN_HEX3412 ORIGIN_HEX3413 ORIGIN_HEX3414 ORIGIN_HEX3415
-0.2071179 -0.0993232 0.0677710 -0.5684382 -0.6706409
ORIGIN_HEX3416 ORIGIN_HEX3417 ORIGIN_HEX3418 ORIGIN_HEX3419 ORIGIN_HEX3426
-0.8160657 -0.0630633 2.7766541 0.6761946 -0.0969424
ORIGIN_HEX3453 ORIGIN_HEX3456 ORIGIN_HEX3457 ORIGIN_HEX3458 ORIGIN_HEX3459
-0.0365791 0.5363015 -0.9684986 0.9718577 -0.2965659
ORIGIN_HEX3460 ORIGIN_HEX3461 ORIGIN_HEX3462 ORIGIN_HEX3463 ORIGIN_HEX3464
0.4579203 -2.4683010 -0.1638913 -1.9579557 0.2406248
ORIGIN_HEX3465 ORIGIN_HEX3466 ORIGIN_HEX3467 ORIGIN_HEX3468 ORIGIN_HEX3472
-2.5930413 -1.3201206 -0.7539187 -0.7162125 -0.8130167
ORIGIN_HEX3473 ORIGIN_HEX3499 ORIGIN_HEX3502 ORIGIN_HEX3503 ORIGIN_HEX3504
0.1199408 0.7530506 0.1019086 0.4713848 1.1631673
ORIGIN_HEX3505 ORIGIN_HEX3506 ORIGIN_HEX3507 ORIGIN_HEX3508 ORIGIN_HEX3509
0.3263227 0.3477469 -0.5203538 -0.1862345 -0.1951363
ORIGIN_HEX3511 ORIGIN_HEX3512 ORIGIN_HEX3513 ORIGIN_HEX3514 ORIGIN_HEX3518
-0.8958420 -2.6761935 -0.1893791 2.1303161 -0.1751028
ORIGIN_HEX3519 ORIGIN_HEX3547 ORIGIN_HEX3549 ORIGIN_HEX3551 ORIGIN_HEX3552
-0.3643295 1.6332862 2.0034542 1.4438605 0.8287141
ORIGIN_HEX3554 ORIGIN_HEX3555 ORIGIN_HEX3556 ORIGIN_HEX3557 ORIGIN_HEX3558
0.0695989 -1.2684973 -0.3890615 0.1463862 -0.9398779
ORIGIN_HEX3559 ORIGIN_HEX3561 ORIGIN_HEX3562 ORIGIN_HEX3564 ORIGIN_HEX3565
0.5719355 -1.6694150 0.7702119 -0.8115395 -0.4085120
ORIGIN_HEX3593 ORIGIN_HEX3594 ORIGIN_HEX3595 ORIGIN_HEX3599 ORIGIN_HEX3600
0.9574945 0.9344616 2.4077450 1.1931658 -0.9112157
ORIGIN_HEX3601 ORIGIN_HEX3602 ORIGIN_HEX3603 ORIGIN_HEX3604 ORIGIN_HEX3605
2.3014514 2.1543064 -0.2075913 0.0761971 -0.1630476
ORIGIN_HEX3607 ORIGIN_HEX3608 ORIGIN_HEX3610 ORIGIN_HEX3611 ORIGIN_HEX3613
-0.1655579 0.0573479 0.1677468 -1.7020156 -0.4747906
ORIGIN_HEX3641 ORIGIN_HEX3643 ORIGIN_HEX3644 ORIGIN_HEX3645 ORIGIN_HEX3647
0.4119849 0.7496293 0.5382484 1.3045425 1.0056136
ORIGIN_HEX3648 ORIGIN_HEX3649 ORIGIN_HEX3652 ORIGIN_HEX3653 ORIGIN_HEX3654
-0.1725154 -0.8039295 -0.7419048 0.4875773 -1.7619425
ORIGIN_HEX3655 ORIGIN_HEX3656 ORIGIN_HEX3657 ORIGIN_HEX3658 ORIGIN_HEX3661
-1.2684308 -2.2892537 -1.1406926 -3.5147613 0.6721203
ORIGIN_HEX3689 ORIGIN_HEX3691 ORIGIN_HEX3692 ORIGIN_HEX3693 ORIGIN_HEX3694
0.8395750 0.0960656 0.2887665 2.0158846 0.9166411
ORIGIN_HEX3695 ORIGIN_HEX3699 ORIGIN_HEX3700 ORIGIN_HEX3701 ORIGIN_HEX3702
0.6265470 -0.5221391 -1.2681053 -0.8447972 -0.7087879
ORIGIN_HEX3703 ORIGIN_HEX3704 ORIGIN_HEX3705 ORIGIN_HEX3706 ORIGIN_HEX3707
1.3121259 -2.2011961 -2.4722927 -2.5386913 0.4252072
ORIGIN_HEX3736 ORIGIN_HEX3739 ORIGIN_HEX3740 ORIGIN_HEX3741 ORIGIN_HEX3742
1.0531439 0.1686938 0.9008338 -1.0792838 0.6400304
ORIGIN_HEX3748 ORIGIN_HEX3750 ORIGIN_HEX3751 ORIGIN_HEX3753 ORIGIN_HEX3754
-1.9487963 0.2976277 0.8582962 -1.0879711 -1.8316653
ORIGIN_HEX3782 ORIGIN_HEX3783 ORIGIN_HEX3784 ORIGIN_HEX3785 ORIGIN_HEX3786
1.2993859 0.9758243 0.4497771 -0.9926220 0.5096589
ORIGIN_HEX3787 ORIGIN_HEX3788 ORIGIN_HEX3789 ORIGIN_HEX3793 ORIGIN_HEX3794
1.8873928 -0.0619263 -0.1840853 0.2272687 0.2918407
ORIGIN_HEX3798 ORIGIN_HEX3829 ORIGIN_HEX3830 ORIGIN_HEX3831 ORIGIN_HEX3832
-1.9513166 1.0087180 0.8300210 0.2195242 0.7604713
ORIGIN_HEX3836 ORIGIN_HEX3837 ORIGIN_HEX3839 ORIGIN_HEX3840 ORIGIN_HEX3841
-1.2119676 0.0060357 0.2362505 -2.8380836 0.2185966
ORIGIN_HEX3845 ORIGIN_HEX3847 ORIGIN_HEX3848 ORIGIN_HEX3875 ORIGIN_HEX3876
-0.2784621 2.7243241 -3.4421051 0.1694671 2.0077671
ORIGIN_HEX3877 ORIGIN_HEX3878 ORIGIN_HEX3879 ORIGIN_HEX3881 ORIGIN_HEX3882
0.4216759 2.0569029 1.3484133 -1.5000963 -1.4273320
ORIGIN_HEX3884 ORIGIN_HEX3886 ORIGIN_HEX3887 ORIGIN_HEX3888 ORIGIN_HEX3895
0.5660548 -0.8878040 2.5773595 -1.2461163 -1.7070901
ORIGIN_HEX3922 ORIGIN_HEX3923 ORIGIN_HEX3924 ORIGIN_HEX3925 ORIGIN_HEX3926
-0.3590367 0.4184097 -0.6274617 3.0435493 -0.5223018
ORIGIN_HEX393 ORIGIN_HEX3930 ORIGIN_HEX3932 ORIGIN_HEX3933 ORIGIN_HEX3935
-0.4662111 -1.5840318 1.2549984 -0.7504857 -0.1606878
ORIGIN_HEX3936 ORIGIN_HEX3939 ORIGIN_HEX3942 ORIGIN_HEX3943 ORIGIN_HEX3968
-3.2812378 0.5495970 -0.3206241 -1.4292193 0.0272025
ORIGIN_HEX3969 ORIGIN_HEX3971 ORIGIN_HEX3972 ORIGIN_HEX3975 ORIGIN_HEX3976
0.5987144 1.2993903 0.3123674 0.5828444 -0.7599562
ORIGIN_HEX3978 ORIGIN_HEX3979 ORIGIN_HEX3980 ORIGIN_HEX3981 ORIGIN_HEX3982
-0.5765038 -0.8791201 -0.9975592 -0.7107979 -0.7176645
ORIGIN_HEX3990 ORIGIN_HEX4016 ORIGIN_HEX4017 ORIGIN_HEX4018 ORIGIN_HEX4019
-0.9961806 1.0523287 1.4396868 0.2177704 -0.7075688
ORIGIN_HEX4020 ORIGIN_HEX4023 ORIGIN_HEX4024 ORIGIN_HEX4025 ORIGIN_HEX4026
1.2630674 0.1771058 -1.9396584 -0.6474830 0.7337175
ORIGIN_HEX4028 ORIGIN_HEX4029 ORIGIN_HEX4030 ORIGIN_HEX4033 ORIGIN_HEX4038
0.3663608 -0.8977324 -0.0063699 -0.7308323 1.1107579
ORIGIN_HEX4062 ORIGIN_HEX4063 ORIGIN_HEX4064 ORIGIN_HEX4065 ORIGIN_HEX4066
0.1403471 2.1608742 1.4449175 0.8611693 -0.5153123
ORIGIN_HEX4067 ORIGIN_HEX4070 ORIGIN_HEX4071 ORIGIN_HEX4073 ORIGIN_HEX4074
-0.8368907 -0.3090018 -1.1885133 -0.7422554 -1.6066398
ORIGIN_HEX4075 ORIGIN_HEX4076 ORIGIN_HEX4083 ORIGIN_HEX4084 ORIGIN_HEX4085
-0.1455265 0.0612035 -0.7937945 0.1061781 1.5110138
ORIGIN_HEX4109 ORIGIN_HEX4111 ORIGIN_HEX4112 ORIGIN_HEX4113 ORIGIN_HEX4114
-0.6873756 1.5026350 1.2350744 -0.4573313 -0.5107837
ORIGIN_HEX4117 ORIGIN_HEX4118 ORIGIN_HEX4122 ORIGIN_HEX4123 ORIGIN_HEX4124
0.0469267 -0.1430088 1.2184742 -4.5332096 -0.1567816
ORIGIN_HEX4127 ORIGIN_HEX4130 ORIGIN_HEX4131 ORIGIN_HEX4132 ORIGIN_HEX4156
-0.1098477 -0.0535808 -0.0258480 -1.1240965 1.5563541
ORIGIN_HEX4157 ORIGIN_HEX4159 ORIGIN_HEX4161 ORIGIN_HEX4163 ORIGIN_HEX4167
1.3782152 -0.3979280 -0.1302881 1.9728520 -0.5950783
ORIGIN_HEX4168 ORIGIN_HEX4169 ORIGIN_HEX4176 ORIGIN_HEX4177 ORIGIN_HEX4178
-1.0778551 0.7102478 0.0638024 1.8164466 -0.8292221
ORIGIN_HEX4179 ORIGIN_HEX4203 ORIGIN_HEX4205 ORIGIN_HEX4206 ORIGIN_HEX4207
0.0006596 1.5161250 2.0897285 -0.3645639 0.5191798
ORIGIN_HEX4208 ORIGIN_HEX4209 ORIGIN_HEX4210 ORIGIN_HEX4211 ORIGIN_HEX4215
-0.8359060 2.5335488 -0.8626401 1.5172191 -0.3605282
ORIGIN_HEX4221 ORIGIN_HEX4224 ORIGIN_HEX4225 ORIGIN_HEX4226 ORIGIN_HEX4227
0.3585984 -0.8468305 -0.0721468 -0.1748214 -1.5903074
ORIGIN_HEX4250 ORIGIN_HEX4251 ORIGIN_HEX4253 ORIGIN_HEX4254 ORIGIN_HEX4256
0.9045901 1.9680481 2.0850755 -1.2133983 1.6363424
ORIGIN_HEX4257 ORIGIN_HEX4271 ORIGIN_HEX4272 ORIGIN_HEX4273 ORIGIN_HEX4297
0.9667774 -0.3332169 0.2246859 -1.9710505 0.3182408
ORIGIN_HEX4300 ORIGIN_HEX4301 ORIGIN_HEX4302 ORIGIN_HEX4304 ORIGIN_HEX4315
0.1418879 -1.5313203 -0.0541479 1.6454820 1.5755957
ORIGIN_HEX4318 ORIGIN_HEX4319 ORIGIN_HEX4320 ORIGIN_HEX4321 ORIGIN_HEX4343
-0.2661520 -0.9718012 -0.6200287 -1.6324950 1.8495237
ORIGIN_HEX4345 ORIGIN_HEX4346 ORIGIN_HEX4347 ORIGIN_HEX4348 ORIGIN_HEX4351
1.0758050 1.3690798 -1.8522003 -0.4903174 1.2331858
ORIGIN_HEX4362 ORIGIN_HEX4365 ORIGIN_HEX4390 ORIGIN_HEX4391 ORIGIN_HEX4392
-0.3482324 0.1440818 0.4303678 1.2449634 2.3013655
ORIGIN_HEX4393 ORIGIN_HEX4394 ORIGIN_HEX4395 ORIGIN_HEX4398 ORIGIN_HEX4409
0.6575960 1.0903520 -0.1658256 -1.4875024 -1.8245267
ORIGIN_HEX4412 ORIGIN_HEX4413 ORIGIN_HEX4414 ORIGIN_HEX4415 ORIGIN_HEX4436
-1.2265221 1.9473474 0.0106783 1.5064418 -0.8117361
ORIGIN_HEX4437 ORIGIN_HEX4438 ORIGIN_HEX4439 ORIGIN_HEX444 ORIGIN_HEX4440
-0.8016442 1.6672493 0.7386107 0.1323437 -0.0662479
ORIGIN_HEX4441 ORIGIN_HEX4442 ORIGIN_HEX4459 ORIGIN_HEX4460 ORIGIN_HEX4484
0.8189719 0.0412522 0.3239717 -0.6677089 -0.0341139
ORIGIN_HEX4485 ORIGIN_HEX4486 ORIGIN_HEX4487 ORIGIN_HEX4488 ORIGIN_HEX4489
1.5254766 1.6409109 -0.0046780 0.3695098 -1.1543570
ORIGIN_HEX4490 ORIGIN_HEX4492 ORIGIN_HEX4502 ORIGIN_HEX4506 ORIGIN_HEX4507
-1.3781195 0.2900634 2.8327753 -0.3605899 3.1774478
ORIGIN_HEX4508 ORIGIN_HEX4509 ORIGIN_HEX4530 ORIGIN_HEX4532 ORIGIN_HEX4533
0.3228870 -0.4912882 -0.7453543 1.6298650 -0.4112167
ORIGIN_HEX4534 ORIGIN_HEX4535 ORIGIN_HEX4537 ORIGIN_HEX4538 ORIGIN_HEX4550
1.9558892 0.8095877 -1.1525493 0.4098119 -3.1218256
ORIGIN_HEX4552 ORIGIN_HEX4553 ORIGIN_HEX4554 ORIGIN_HEX4556 ORIGIN_HEX4577
-2.3394875 -0.5290283 -0.7380339 1.6916329 1.6187785
ORIGIN_HEX4579 ORIGIN_HEX4580 ORIGIN_HEX4581 ORIGIN_HEX4582 ORIGIN_HEX4583
0.5286935 1.4514326 -2.1029248 0.9640727 -0.5400876
ORIGIN_HEX4584 ORIGIN_HEX4585 ORIGIN_HEX4586 ORIGIN_HEX4600 ORIGIN_HEX4601
-1.0611209 -2.0994883 -0.1311959 0.1952898 -1.5418352
ORIGIN_HEX4602 ORIGIN_HEX4603 ORIGIN_HEX4624 ORIGIN_HEX4626 ORIGIN_HEX4627
0.3023738 1.7821522 0.6519340 0.2428157 -0.2353818
ORIGIN_HEX4628 ORIGIN_HEX4629 ORIGIN_HEX4631 ORIGIN_HEX4632 ORIGIN_HEX4646
0.1175514 1.4168572 -0.2926204 0.5627026 0.9041586
ORIGIN_HEX4647 ORIGIN_HEX4648 ORIGIN_HEX4649 ORIGIN_HEX4650 ORIGIN_HEX4671
-0.7499660 -0.0056888 0.0739773 1.4593125 1.9281425
ORIGIN_HEX4674 ORIGIN_HEX4675 ORIGIN_HEX4676 ORIGIN_HEX4679 ORIGIN_HEX4692
-0.9769702 -0.7778582 0.4667362 -2.0062788 0.3170426
ORIGIN_HEX4694 ORIGIN_HEX4695 ORIGIN_HEX4696 ORIGIN_HEX4698 ORIGIN_HEX4720
0.1135807 0.4775663 0.1267107 0.8685090 -0.6750668
ORIGIN_HEX4721 ORIGIN_HEX4722 ORIGIN_HEX4726 ORIGIN_HEX4741 ORIGIN_HEX4742
-0.8515002 -1.1699133 1.0970898 0.2775132 -0.7365988
ORIGIN_HEX4743 ORIGIN_HEX4765 ORIGIN_HEX4766 ORIGIN_HEX4768 ORIGIN_HEX4769
1.0388722 2.2294066 0.3699257 -0.7313059 1.9776731
ORIGIN_HEX4770 ORIGIN_HEX4786 ORIGIN_HEX4788 ORIGIN_HEX4789 ORIGIN_HEX4790
0.4568361 0.4079674 -0.0544375 -0.3281035 -0.8472713
ORIGIN_HEX4791 ORIGIN_HEX4792 ORIGIN_HEX4812 ORIGIN_HEX4813 ORIGIN_HEX4814
0.4373472 1.5135941 1.5801770 1.4827910 0.9118861
ORIGIN_HEX4815 ORIGIN_HEX4816 ORIGIN_HEX4817 ORIGIN_HEX4835 ORIGIN_HEX4836
0.5307759 -0.0483922 0.5244830 0.8730310 2.2833433
ORIGIN_HEX4837 ORIGIN_HEX4838 ORIGIN_HEX4839 ORIGIN_HEX4840 ORIGIN_HEX4859
-0.0180438 1.3793643 1.2758413 1.1221953 0.0584622
ORIGIN_HEX4860 ORIGIN_HEX4861 ORIGIN_HEX4862 ORIGIN_HEX4863 ORIGIN_HEX4864
0.6358935 1.6018620 1.3658522 -0.5155384 -1.1357539
ORIGIN_HEX4865 ORIGIN_HEX4867 ORIGIN_HEX488 ORIGIN_HEX4880 ORIGIN_HEX4883
0.3635681 0.9618895 -1.8482562 -2.6503923 -0.4395882
ORIGIN_HEX4884 ORIGIN_HEX4885 ORIGIN_HEX4886 ORIGIN_HEX4887 ORIGIN_HEX490
-0.7095240 0.8598992 1.2720122 2.0528960 0.1655470
ORIGIN_HEX4905 ORIGIN_HEX4906 ORIGIN_HEX4908 ORIGIN_HEX4909 ORIGIN_HEX491
-1.0787583 -0.0285947 0.4513283 1.0887482 -0.7045675
ORIGIN_HEX4911 ORIGIN_HEX4912 ORIGIN_HEX4913 ORIGIN_HEX4925 ORIGIN_HEX4926
-0.2399788 1.4541954 0.7345186 -2.0479490 -0.5307229
ORIGIN_HEX4930 ORIGIN_HEX4931 ORIGIN_HEX4932 ORIGIN_HEX4933 ORIGIN_HEX4953
0.7212203 -0.2081248 1.3570181 1.2927902 -0.0592221
ORIGIN_HEX4954 ORIGIN_HEX4955 ORIGIN_HEX4956 ORIGIN_HEX4958 ORIGIN_HEX4961
1.3277431 1.4394069 -0.3424995 -1.0892789 0.4615217
ORIGIN_HEX4974 ORIGIN_HEX4978 ORIGIN_HEX4981 ORIGIN_HEX4999 ORIGIN_HEX5000
0.1264010 0.4823401 0.4514464 1.1303053 0.7090824
ORIGIN_HEX5001 ORIGIN_HEX5002 ORIGIN_HEX5003 ORIGIN_HEX5006 ORIGIN_HEX5007
1.6807353 0.7893482 0.0031079 -0.9770603 0.6184305
ORIGIN_HEX5019 ORIGIN_HEX5025 ORIGIN_HEX5026 ORIGIN_HEX5027 ORIGIN_HEX5028
-1.5656736 0.1339425 1.9290212 0.8215917 2.2444140
ORIGIN_HEX5047 ORIGIN_HEX5048 ORIGIN_HEX5049 ORIGIN_HEX5050 ORIGIN_HEX5052
0.0679750 0.8337323 1.0527806 1.2142734 0.0402196
ORIGIN_HEX5054 ORIGIN_HEX5066 ORIGIN_HEX5072 ORIGIN_HEX5073 ORIGIN_HEX5075
-0.1575829 -1.6513726 0.3010853 1.2268506 1.3936678
ORIGIN_HEX5093 ORIGIN_HEX5094 ORIGIN_HEX5095 ORIGIN_HEX5096 ORIGIN_HEX5097
-0.1742004 -0.9074341 1.0162498 0.1087993 0.7077075
ORIGIN_HEX5098 ORIGIN_HEX5101 ORIGIN_HEX5102 ORIGIN_HEX5119 ORIGIN_HEX5121
-0.4711372 -0.0544300 -0.1486679 0.0742758 1.3686465
ORIGIN_HEX5140 ORIGIN_HEX5141 ORIGIN_HEX5142 ORIGIN_HEX5143 ORIGIN_HEX5144
0.2378105 -0.2356043 1.4800829 1.3405065 0.6851922
ORIGIN_HEX5148 ORIGIN_HEX5149 ORIGIN_HEX5160 ORIGIN_HEX5166 ORIGIN_HEX5167
1.2882671 0.0059946 -1.1856129 -0.2185164 -0.9193905
ORIGIN_HEX5168 ORIGIN_HEX5169 ORIGIN_HEX5188 ORIGIN_HEX5189 ORIGIN_HEX5190
0.1972392 0.7008636 1.3270252 1.7526368 1.2068491
ORIGIN_HEX5191 ORIGIN_HEX5197 ORIGIN_HEX5205 ORIGIN_HEX5206 ORIGIN_HEX5212
0.2811287 -1.4087287 -3.0073657 1.1096431 -0.0628124
ORIGIN_HEX5213 ORIGIN_HEX5214 ORIGIN_HEX5215 ORIGIN_HEX5234 ORIGIN_HEX5235
1.3678139 0.4888371 0.2453882 2.0356930 1.1375845
ORIGIN_HEX5236 ORIGIN_HEX5237 ORIGIN_HEX5239 ORIGIN_HEX5240 ORIGIN_HEX5242
0.5702900 0.7460424 -0.8166819 1.1798668 0.0521509
ORIGIN_HEX5244 ORIGIN_HEX5252 ORIGIN_HEX5253 ORIGIN_HEX5254 ORIGIN_HEX5260
-1.1530523 -3.4958181 1.2528182 1.2049169 -0.5515344
ORIGIN_HEX5261 ORIGIN_HEX5262 ORIGIN_HEX5280 ORIGIN_HEX5281 ORIGIN_HEX5282
1.6304244 0.1418097 2.4205573 -0.2331155 0.6241406
ORIGIN_HEX5283 ORIGIN_HEX5284 ORIGIN_HEX5286 ORIGIN_HEX5298 ORIGIN_HEX5301
1.4372083 0.0435505 0.7113433 -0.8828009 -1.0173189
ORIGIN_HEX5307 ORIGIN_HEX5308 ORIGIN_HEX5309 ORIGIN_HEX5328 ORIGIN_HEX5329
0.9956080 0.4015849 0.0283317 1.8064303 0.9959228
ORIGIN_HEX5330 ORIGIN_HEX5331 ORIGIN_HEX5333 ORIGIN_HEX5336 ORIGIN_HEX5339
1.4932041 0.4472980 -0.9516738 -0.7839905 -3.0511655
ORIGIN_HEX5349 ORIGIN_HEX535 ORIGIN_HEX5350 ORIGIN_HEX5354 ORIGIN_HEX5355
-1.5616865 0.5902618 -0.6353278 -1.1500512 -0.2785943
ORIGIN_HEX5356 ORIGIN_HEX537 ORIGIN_HEX5375 ORIGIN_HEX5377 ORIGIN_HEX5378
0.2424989 1.4658552 0.7949343 0.1497270 0.0329678
ORIGIN_HEX5379 ORIGIN_HEX5380 ORIGIN_HEX5382 ORIGIN_HEX5383 ORIGIN_HEX5397
0.2051962 0.5662071 1.2808573 -2.0017267 -1.3032700
ORIGIN_HEX5398 ORIGIN_HEX5399 ORIGIN_HEX540 ORIGIN_HEX5400 ORIGIN_HEX5401
-0.0190620 -0.0505125 -2.1046246 0.8134046 -2.3004893
ORIGIN_HEX5402 ORIGIN_HEX5403 ORIGIN_HEX5422 ORIGIN_HEX5423 ORIGIN_HEX5424
-1.6740322 -2.6390033 -0.7575095 -0.3170480 0.9547756
ORIGIN_HEX5425 ORIGIN_HEX5426 ORIGIN_HEX5428 ORIGIN_HEX5429 ORIGIN_HEX5430
2.6293452 1.2499171 1.4352940 1.0215246 1.6074843
ORIGIN_HEX5433 ORIGIN_HEX5436 ORIGIN_HEX5437 ORIGIN_HEX5438 ORIGIN_HEX5439
-2.9504885 -0.4010957 -0.6562499 -0.3858020 1.9439391
ORIGIN_HEX5442 ORIGIN_HEX5443 ORIGIN_HEX5445 ORIGIN_HEX5446 ORIGIN_HEX5447
-0.4930776 -2.8610790 0.9475300 1.3910929 -0.6022700
ORIGIN_HEX5449 ORIGIN_HEX5450 ORIGIN_HEX5469 ORIGIN_HEX5470 ORIGIN_HEX5471
0.0383467 -2.0610997 -1.9778811 0.5897262 -0.1707127
ORIGIN_HEX5472 ORIGIN_HEX5473 ORIGIN_HEX5474 ORIGIN_HEX5475 ORIGIN_HEX5476
0.3775145 -0.0138531 1.2318093 0.0027803 -0.6277285
ORIGIN_HEX5482 ORIGIN_HEX5483 ORIGIN_HEX5484 ORIGIN_HEX5485 ORIGIN_HEX5488
0.2282249 -0.7211854 0.3560940 -0.1705253 -2.8751608
ORIGIN_HEX5489 ORIGIN_HEX5490 ORIGIN_HEX5492 ORIGIN_HEX5493 ORIGIN_HEX5495
-1.1270812 -0.7208743 -0.1947793 1.1266288 -0.9625786
ORIGIN_HEX5496 ORIGIN_HEX5497 ORIGIN_HEX5520 ORIGIN_HEX5521 ORIGIN_HEX5522
-0.8220644 -0.7047619 0.9448342 1.7296665 2.0416324
ORIGIN_HEX5527 ORIGIN_HEX5529 ORIGIN_HEX5530 ORIGIN_HEX5531 ORIGIN_HEX5538
-1.7185436 0.9632329 0.7314348 -0.6079231 2.0085567
ORIGIN_HEX5539 ORIGIN_HEX5540 ORIGIN_HEX5541 ORIGIN_HEX5542 ORIGIN_HEX5543
-0.6412602 -0.1186709 -0.3899014 1.6344700 -0.1886723
ORIGIN_HEX5544 ORIGIN_HEX5563 ORIGIN_HEX5564 ORIGIN_HEX5565 ORIGIN_HEX5566
-1.6046422 -0.6185533 0.8139259 1.0845273 0.1635264
ORIGIN_HEX5567 ORIGIN_HEX5568 ORIGIN_HEX5569 ORIGIN_HEX5570 ORIGIN_HEX5571
0.0242824 2.0177806 0.1193044 0.9006443 0.6274731
ORIGIN_HEX5573 ORIGIN_HEX5575 ORIGIN_HEX5577 ORIGIN_HEX5578 ORIGIN_HEX5579
-1.4609253 1.0244910 -0.4465930 -0.8963926 -0.6256575
ORIGIN_HEX5584 ORIGIN_HEX5585 ORIGIN_HEX5586 ORIGIN_HEX5587 ORIGIN_HEX5588
-0.5356725 1.9549762 -0.0184801 -0.9651939 -0.5905737
ORIGIN_HEX5589 ORIGIN_HEX5590 ORIGIN_HEX5611 ORIGIN_HEX5613 ORIGIN_HEX5614
0.6262300 -4.0463589 1.4374054 -0.0701589 -0.0103748
ORIGIN_HEX5615 ORIGIN_HEX5617 ORIGIN_HEX5621 ORIGIN_HEX5622 ORIGIN_HEX5623
1.5965890 0.7023993 1.0378284 -0.4389214 0.2470912
ORIGIN_HEX5624 ORIGIN_HEX5625 ORIGIN_HEX5626 ORIGIN_HEX5627 ORIGIN_HEX5628
-0.0661372 -0.1880693 -0.7986541 -0.1153630 -0.8011252
ORIGIN_HEX5632 ORIGIN_HEX5633 ORIGIN_HEX5634 ORIGIN_HEX5635 ORIGIN_HEX5638
1.1799224 0.5913179 2.4608140 0.4594246 -1.8124263
ORIGIN_HEX5657 ORIGIN_HEX5658 ORIGIN_HEX5660 ORIGIN_HEX5663 ORIGIN_HEX5664
-0.1778883 0.6890690 0.6690703 1.7306471 -0.3018017
ORIGIN_HEX5666 ORIGIN_HEX5667 ORIGIN_HEX5668 ORIGIN_HEX5669 ORIGIN_HEX5670
-0.8827749 -0.1643838 -0.6996989 0.0965870 1.1221834
ORIGIN_HEX5671 ORIGIN_HEX5672 ORIGIN_HEX5673 ORIGIN_HEX5674 ORIGIN_HEX5675
-0.3898911 1.6791695 -0.4138379 0.3323815 0.2443621
ORIGIN_HEX5678 ORIGIN_HEX5679 ORIGIN_HEX5680 ORIGIN_HEX5681 ORIGIN_HEX5682
-2.0639540 -0.9034536 0.1308683 -0.5564769 0.2877340
ORIGIN_HEX5685 ORIGIN_HEX5705 ORIGIN_HEX5706 ORIGIN_HEX5707 ORIGIN_HEX5708
0.7047464 0.2653127 1.4520585 0.8689793 0.6442626
ORIGIN_HEX5709 ORIGIN_HEX5711 ORIGIN_HEX5713 ORIGIN_HEX5714 ORIGIN_HEX5715
1.8012354 0.8174056 0.0759158 1.4376369 -0.4501717
ORIGIN_HEX5716 ORIGIN_HEX5717 ORIGIN_HEX5718 ORIGIN_HEX5719 ORIGIN_HEX5720
0.9509629 0.6892102 0.6795747 0.0999981 0.2073078
ORIGIN_HEX5721 ORIGIN_HEX5722 ORIGIN_HEX5726 ORIGIN_HEX5727 ORIGIN_HEX5728
0.2894450 -0.6255519 0.3944752 -0.1229495 0.8548995
ORIGIN_HEX5751 ORIGIN_HEX5752 ORIGIN_HEX5753 ORIGIN_HEX5754 ORIGIN_HEX5755
1.0761208 0.3881737 2.0750466 0.5124920 0.4229141
ORIGIN_HEX5757 ORIGIN_HEX5758 ORIGIN_HEX5759 ORIGIN_HEX5760 ORIGIN_HEX5761
1.0878867 0.5160850 0.9213999 -0.9631359 -0.1722241
ORIGIN_HEX5762 ORIGIN_HEX5763 ORIGIN_HEX5764 ORIGIN_HEX5765 ORIGIN_HEX5767
-0.2823172 -0.3343035 -0.5779231 -0.6441976 0.6361780
ORIGIN_HEX5768 ORIGIN_HEX5772 ORIGIN_HEX5773 ORIGIN_HEX5774 ORIGIN_HEX5775
-0.5597664 -1.4474449 -0.7150631 -0.3575250 1.5272022
ORIGIN_HEX5776 ORIGIN_HEX5799 ORIGIN_HEX5800 ORIGIN_HEX5801 ORIGIN_HEX5802
0.9678161 1.6126715 0.5123935 0.8216366 0.9381762
ORIGIN_HEX5803 ORIGIN_HEX5806 ORIGIN_HEX5807 ORIGIN_HEX5808 ORIGIN_HEX5811
0.8143548 1.8612049 1.3733557 -0.3047093 -0.9927455
ORIGIN_HEX5812 ORIGIN_HEX5813 ORIGIN_HEX5814 ORIGIN_HEX5815 ORIGIN_HEX5816
0.2139686 0.1300102 -0.9396359 0.6843857 1.6928353
ORIGIN_HEX5820 ORIGIN_HEX5821 ORIGIN_HEX5823 ORIGIN_HEX583 ORIGIN_HEX584
0.2397063 -0.6810367 1.3884030 1.0866400 0.7794091
ORIGIN_HEX5846 ORIGIN_HEX5847 ORIGIN_HEX5848 ORIGIN_HEX5849 ORIGIN_HEX585
0.0864275 1.9677581 -0.1043177 1.7055234 2.6745234
ORIGIN_HEX5851 ORIGIN_HEX5852 ORIGIN_HEX5853 ORIGIN_HEX5854 ORIGIN_HEX5855
1.5229454 0.9806833 0.1787645 0.5958560 0.6508511
ORIGIN_HEX5856 ORIGIN_HEX5858 ORIGIN_HEX5859 ORIGIN_HEX586 ORIGIN_HEX5860
0.0208502 1.6478802 0.4970541 0.1282800 0.0490154
ORIGIN_HEX5861 ORIGIN_HEX5862 ORIGIN_HEX5863 ORIGIN_HEX5867 ORIGIN_HEX5868
-0.2285719 -0.0612046 1.4968936 0.3370240 0.9676662
ORIGIN_HEX5869 ORIGIN_HEX587 ORIGIN_HEX5893 ORIGIN_HEX5894 ORIGIN_HEX5895
-0.1824691 -2.5403035 1.2142517 1.0635786 1.5393373
ORIGIN_HEX5898 ORIGIN_HEX5899 ORIGIN_HEX5901 ORIGIN_HEX5902 ORIGIN_HEX5903
0.6963974 -1.2883478 0.8065914 0.7174321 1.3061864
ORIGIN_HEX5904 ORIGIN_HEX5905 ORIGIN_HEX5906 ORIGIN_HEX5907 ORIGIN_HEX5908
-0.2410273 -0.2716849 0.1496929 2.6691683 -0.8448489
ORIGIN_HEX5909 ORIGIN_HEX5910 ORIGIN_HEX5914 ORIGIN_HEX5915 ORIGIN_HEX5916
1.8155623 0.7876468 -1.1823903 0.5481049 0.7185487
ORIGIN_HEX5940 ORIGIN_HEX5941 ORIGIN_HEX5942 ORIGIN_HEX5943 ORIGIN_HEX5944
1.9358400 0.0514065 1.0714295 1.4596171 1.3882571
ORIGIN_HEX5945 ORIGIN_HEX5946 ORIGIN_HEX5947 ORIGIN_HEX5948 ORIGIN_HEX5949
1.2285015 0.7061889 0.7004191 2.7956525 0.4436900
ORIGIN_HEX5950 ORIGIN_HEX5951 ORIGIN_HEX5954 ORIGIN_HEX5955 ORIGIN_HEX5956
0.2703921 2.6326350 0.8169964 -0.3484836 0.5728720
ORIGIN_HEX5957 ORIGIN_HEX5961 ORIGIN_HEX5962 ORIGIN_HEX5963 ORIGIN_HEX5987
1.6922454 -0.5344975 -0.2370792 -4.0090557 -1.0557632
ORIGIN_HEX5988 ORIGIN_HEX5989 ORIGIN_HEX5990 ORIGIN_HEX5991 ORIGIN_HEX5993
2.0593102 0.8203089 1.4761605 1.2531781 0.6384418
ORIGIN_HEX5995 ORIGIN_HEX5996 ORIGIN_HEX5997 ORIGIN_HEX5998 ORIGIN_HEX5999
-1.0055901 0.0306195 0.1664513 -0.2979582 -0.5836475
ORIGIN_HEX6000 ORIGIN_HEX6001 ORIGIN_HEX6002 ORIGIN_HEX6009 ORIGIN_HEX6010
0.2102564 2.0682467 0.8419754 -0.7353977 0.3147957
ORIGIN_HEX6034 ORIGIN_HEX6035 ORIGIN_HEX6036 ORIGIN_HEX6037 ORIGIN_HEX6038
1.4643951 1.6388687 0.2958222 1.0590220 1.7357150
ORIGIN_HEX6039 ORIGIN_HEX6040 ORIGIN_HEX6041 ORIGIN_HEX6042 ORIGIN_HEX6043
-0.2895536 -1.9270743 1.1351684 0.3657199 0.7906779
ORIGIN_HEX6044 ORIGIN_HEX6045 ORIGIN_HEX6046 ORIGIN_HEX6047 ORIGIN_HEX6048
-0.5844752 -0.8957362 -1.1165877 -0.2339351 -0.0687888
ORIGIN_HEX6051 ORIGIN_HEX6056 ORIGIN_HEX6082 ORIGIN_HEX6083 ORIGIN_HEX6084
-0.4310944 0.4210798 0.8714037 -0.7788303 0.6679543
ORIGIN_HEX6085 ORIGIN_HEX6086 ORIGIN_HEX6088 ORIGIN_HEX6089 ORIGIN_HEX6090
2.3237463 1.5132827 0.8923697 0.0505821 0.1425837
ORIGIN_HEX6091 ORIGIN_HEX6092 ORIGIN_HEX6093 ORIGIN_HEX6094 ORIGIN_HEX6095
0.5587758 1.4745774 0.2787977 1.0084101 0.4721477
ORIGIN_HEX6096 ORIGIN_HEX6128 ORIGIN_HEX6130 ORIGIN_HEX6131 ORIGIN_HEX6132
1.9281043 0.0398051 0.4439678 0.9817383 0.5054487
ORIGIN_HEX6133 ORIGIN_HEX6134 ORIGIN_HEX6135 ORIGIN_HEX6136 ORIGIN_HEX6137
1.8356227 0.0014706 0.3141366 0.5396180 0.0199252
ORIGIN_HEX6140 ORIGIN_HEX6141 ORIGIN_HEX6142 ORIGIN_HEX6145 ORIGIN_HEX6150
1.0508756 0.5243958 0.3860558 0.0976497 -1.5838382
ORIGIN_HEX6174 ORIGIN_HEX6176 ORIGIN_HEX6177 ORIGIN_HEX6178 ORIGIN_HEX6179
1.5776727 1.0230998 -0.3094610 1.5602331 1.1338775
ORIGIN_HEX6180 ORIGIN_HEX6181 ORIGIN_HEX6183 ORIGIN_HEX6184 ORIGIN_HEX6185
-0.5288758 0.3977497 0.5305703 1.7091906 0.6803610
ORIGIN_HEX6186 ORIGIN_HEX6188 ORIGIN_HEX6189 ORIGIN_HEX6192 ORIGIN_HEX6195
-0.8612598 -0.4405822 0.2336832 -0.9326156 -1.7430345
ORIGIN_HEX6222 ORIGIN_HEX6223 ORIGIN_HEX6224 ORIGIN_HEX6226 ORIGIN_HEX6227
-1.7290591 1.3167293 0.8293066 1.3770924 1.0632299
ORIGIN_HEX6228 ORIGIN_HEX6229 ORIGIN_HEX6230 ORIGIN_HEX6231 ORIGIN_HEX6232
0.5634519 -0.2653270 0.7576299 0.3148012 -1.7729239
ORIGIN_HEX6233 ORIGIN_HEX6234 ORIGIN_HEX6235 ORIGIN_HEX6237 ORIGIN_HEX6239
0.2726505 -2.2038893 -0.0079288 -0.8372345 -1.3080344
ORIGIN_HEX6241 ORIGIN_HEX6242 ORIGIN_HEX6271 ORIGIN_HEX6272 ORIGIN_HEX6273
0.2150089 -2.2019926 -0.9180519 -2.7464377 0.8942244
ORIGIN_HEX6274 ORIGIN_HEX6275 ORIGIN_HEX6276 ORIGIN_HEX6278 ORIGIN_HEX6279
1.5607251 0.5790867 1.8871823 1.4883480 -1.3368546
ORIGIN_HEX6280 ORIGIN_HEX6281 ORIGIN_HEX6283 ORIGIN_HEX6284 ORIGIN_HEX6286
0.4827698 -0.4889506 0.1202486 0.5068805 -0.8801381
ORIGIN_HEX6289 ORIGIN_HEX6290 ORIGIN_HEX630 ORIGIN_HEX6315 ORIGIN_HEX6316
-1.0917767 0.7470321 -1.2260330 1.0019114 -0.5327881
ORIGIN_HEX632 ORIGIN_HEX6320 ORIGIN_HEX6321 ORIGIN_HEX6322 ORIGIN_HEX6323
-0.1818468 0.8101886 1.2769175 1.1010661 0.8589332
ORIGIN_HEX6324 ORIGIN_HEX6326 ORIGIN_HEX6327 ORIGIN_HEX6328 ORIGIN_HEX633
-0.9005504 -0.6877315 -0.3203935 -1.5712424 1.9136533
ORIGIN_HEX6330 ORIGIN_HEX6331 ORIGIN_HEX6337 ORIGIN_HEX635 ORIGIN_HEX6364
1.6098372 0.5352587 0.5835230 1.7779010 -2.2132098
ORIGIN_HEX6368 ORIGIN_HEX6369 ORIGIN_HEX6370 ORIGIN_HEX6371 ORIGIN_HEX6372
-0.8244851 1.0827283 0.2001058 1.2535016 -0.7492329
ORIGIN_HEX6373 ORIGIN_HEX6374 ORIGIN_HEX6375 ORIGIN_HEX6376 ORIGIN_HEX6377
-0.6974526 -0.9526891 -0.1927362 1.2251660 0.5912581
ORIGIN_HEX6378 ORIGIN_HEX6380 ORIGIN_HEX6382 ORIGIN_HEX6385 ORIGIN_HEX6413
1.3842996 -0.6782195 -0.7430933 -0.2951382 0.8476956
ORIGIN_HEX6415 ORIGIN_HEX6416 ORIGIN_HEX6417 ORIGIN_HEX6418 ORIGIN_HEX6420
0.6343541 0.3965218 0.8556552 1.9157342 -1.0991269
ORIGIN_HEX6421 ORIGIN_HEX6422 ORIGIN_HEX6423 ORIGIN_HEX6424 ORIGIN_HEX6425
-0.1694216 -1.2360252 -1.1748341 0.1756502 1.3642366
ORIGIN_HEX6427 ORIGIN_HEX6429 ORIGIN_HEX6458 ORIGIN_HEX6463 ORIGIN_HEX6464
-1.7983266 -1.0008933 -2.1595150 -0.0685612 1.2300996
ORIGIN_HEX6465 ORIGIN_HEX6466 ORIGIN_HEX6467 ORIGIN_HEX6468 ORIGIN_HEX6469
1.8140350 0.2644554 -0.7569599 1.2172705 0.3953260
ORIGIN_HEX6470 ORIGIN_HEX6471 ORIGIN_HEX6472 ORIGIN_HEX6474 ORIGIN_HEX6475
-1.2732583 0.1113033 0.6695377 0.8725992 -1.9374429
ORIGIN_HEX6476 ORIGIN_HEX6477 ORIGIN_HEX6507 ORIGIN_HEX6509 ORIGIN_HEX6510
1.0098718 -0.6027589 0.4846857 1.7712376 -0.8255777
ORIGIN_HEX6511 ORIGIN_HEX6513 ORIGIN_HEX6514 ORIGIN_HEX6515 ORIGIN_HEX6516
1.0519965 1.6879270 -0.0533922 3.0547104 -0.3841967
ORIGIN_HEX6517 ORIGIN_HEX6518 ORIGIN_HEX6519 ORIGIN_HEX6520 ORIGIN_HEX6521
-1.2187413 1.9623217 0.9208302 -0.1249081 0.2594877
ORIGIN_HEX6522 ORIGIN_HEX6523 ORIGIN_HEX6524 ORIGIN_HEX6555 ORIGIN_HEX6556
-1.4119543 -1.5190326 -0.5280073 2.1504301 -0.8232800
ORIGIN_HEX6557 ORIGIN_HEX6558 ORIGIN_HEX6559 ORIGIN_HEX6561 ORIGIN_HEX6562
-0.4895522 2.3070203 1.4543902 -0.9214899 1.3344581
ORIGIN_HEX6563 ORIGIN_HEX6564 ORIGIN_HEX6565 ORIGIN_HEX6566 ORIGIN_HEX6568
-0.4470706 -0.2085534 0.2414866 0.2591987 0.0412886
ORIGIN_HEX6569 ORIGIN_HEX6570 ORIGIN_HEX6571 ORIGIN_HEX6601 ORIGIN_HEX6603
-0.1205714 1.2391197 -0.7646173 -1.1027277 0.6827017
ORIGIN_HEX6605 ORIGIN_HEX6606 ORIGIN_HEX6607 ORIGIN_HEX6608 ORIGIN_HEX6609
1.5314434 1.0940750 -0.5586919 -1.1164612 0.0960218
ORIGIN_HEX6610 ORIGIN_HEX6611 ORIGIN_HEX6612 ORIGIN_HEX6613 ORIGIN_HEX6614
-1.1285539 -0.5508325 0.6190104 0.4574304 -2.6280838
ORIGIN_HEX6615 ORIGIN_HEX6616 ORIGIN_HEX6649 ORIGIN_HEX6650 ORIGIN_HEX6651
0.4338117 -1.6228158 -3.3004668 0.8726942 0.6513110
ORIGIN_HEX6652 ORIGIN_HEX6653 ORIGIN_HEX6654 ORIGIN_HEX6655 ORIGIN_HEX6656
0.5492128 1.1749964 1.4880024 1.4367972 -1.8628726
ORIGIN_HEX6657 ORIGIN_HEX6659 ORIGIN_HEX6660 ORIGIN_HEX6661 ORIGIN_HEX6663
0.8455960 0.3099137 1.3634151 -0.5278818 -0.2989612
ORIGIN_HEX6695 ORIGIN_HEX6696 ORIGIN_HEX6697 ORIGIN_HEX6698 ORIGIN_HEX6699
-0.7270177 -1.4626863 0.7882934 0.4826493 0.5164807
ORIGIN_HEX6700 ORIGIN_HEX6702 ORIGIN_HEX6703 ORIGIN_HEX6706 ORIGIN_HEX6707
0.6137363 -0.6537533 0.5321838 -0.5193921 0.1529161
ORIGIN_HEX6708 ORIGIN_HEX6709 ORIGIN_HEX6744 ORIGIN_HEX6745 ORIGIN_HEX6746
0.3388306 -0.1285543 0.1761100 1.9032299 0.9770487
ORIGIN_HEX6747 ORIGIN_HEX6749 ORIGIN_HEX6750 ORIGIN_HEX6751 ORIGIN_HEX6753
-0.1909693 0.8806081 -0.4410213 -0.4862142 0.1927022
ORIGIN_HEX6754 ORIGIN_HEX6755 ORIGIN_HEX6757 ORIGIN_HEX678 ORIGIN_HEX6789
0.4260729 -0.6283065 -0.0243323 -0.3852372 0.7758427
ORIGIN_HEX679 ORIGIN_HEX6790 ORIGIN_HEX6791 ORIGIN_HEX6792 ORIGIN_HEX6793
1.2147296 1.1279437 0.1831401 -0.5073611 0.8717798
ORIGIN_HEX6794 ORIGIN_HEX6796 ORIGIN_HEX6797 ORIGIN_HEX6798 ORIGIN_HEX680
1.0188398 -0.3260444 0.5616611 0.8189396 -1.2305437
ORIGIN_HEX6800 ORIGIN_HEX6801 ORIGIN_HEX6802 ORIGIN_HEX681 ORIGIN_HEX682
0.8777755 0.8649527 0.3700446 0.5390617 0.6377800
ORIGIN_HEX6837 ORIGIN_HEX6838 ORIGIN_HEX6839 ORIGIN_HEX6841 ORIGIN_HEX6843
0.2555674 0.8394604 0.7430568 0.7144130 0.4812902
ORIGIN_HEX6846 ORIGIN_HEX6847 ORIGIN_HEX6848 ORIGIN_HEX6850 ORIGIN_HEX6851
1.9654925 -0.2997193 -0.3213768 -0.3062726 -0.2558409
ORIGIN_HEX6885 ORIGIN_HEX6886 ORIGIN_HEX6887 ORIGIN_HEX6888 ORIGIN_HEX6889
0.0894885 0.7246255 0.5101232 1.3975318 0.9533305
ORIGIN_HEX6891 ORIGIN_HEX6892 ORIGIN_HEX6893 ORIGIN_HEX6894 ORIGIN_HEX6895
0.7749147 -0.0455776 0.3776106 0.2323224 0.3710915
ORIGIN_HEX6896 ORIGIN_HEX6897 ORIGIN_HEX6898 ORIGIN_HEX6931 ORIGIN_HEX6932
-0.2611145 0.6247153 0.9347579 0.3908438 1.5538938
ORIGIN_HEX6933 ORIGIN_HEX6934 ORIGIN_HEX6935 ORIGIN_HEX6936 ORIGIN_HEX6938
0.5021609 -0.1964636 0.3726531 1.5198361 0.1003507
ORIGIN_HEX6939 ORIGIN_HEX6940 ORIGIN_HEX6941 ORIGIN_HEX6942 ORIGIN_HEX6943
0.4847068 0.1344369 0.0732412 0.0165570 -0.2425526
ORIGIN_HEX6944 ORIGIN_HEX6945 ORIGIN_HEX6946 ORIGIN_HEX6979 ORIGIN_HEX6980
-0.9377938 -0.4329004 -0.8231431 -0.6792648 2.3314776
ORIGIN_HEX6981 ORIGIN_HEX6982 ORIGIN_HEX6984 ORIGIN_HEX6985 ORIGIN_HEX6986
0.7309835 0.6177983 -0.2588606 1.6230774 0.4594975
ORIGIN_HEX6987 ORIGIN_HEX6988 ORIGIN_HEX6989 ORIGIN_HEX6990 ORIGIN_HEX6991
0.9849699 2.3744467 -0.5028943 -0.7216055 0.6483818
ORIGIN_HEX6992 ORIGIN_HEX7025 ORIGIN_HEX7026 ORIGIN_HEX7027 ORIGIN_HEX7029
-0.9652081 -0.0883241 0.4193721 1.2916240 1.2584024
ORIGIN_HEX7030 ORIGIN_HEX7031 ORIGIN_HEX7033 ORIGIN_HEX7034 ORIGIN_HEX7035
1.0568413 0.3188758 -0.2115838 0.7123763 -0.5764439
ORIGIN_HEX7036 ORIGIN_HEX7037 ORIGIN_HEX7038 ORIGIN_HEX7039 ORIGIN_HEX7040
0.0566386 2.1081501 -0.3849605 0.3878062 0.0326018
ORIGIN_HEX7072 ORIGIN_HEX7073 ORIGIN_HEX7074 ORIGIN_HEX7075 ORIGIN_HEX7076
0.3487314 -0.0339502 1.9787283 0.9966287 2.7041874
ORIGIN_HEX7077 ORIGIN_HEX7081 ORIGIN_HEX7082 ORIGIN_HEX7083 ORIGIN_HEX7084
0.6557789 0.1214956 0.2486064 -0.6585599 -0.0935526
ORIGIN_HEX7085 ORIGIN_HEX7086 ORIGIN_HEX7087 ORIGIN_HEX7119 ORIGIN_HEX7120
2.5058855 -0.1611838 -0.7045969 0.3019046 0.1640131
ORIGIN_HEX7123 ORIGIN_HEX7124 ORIGIN_HEX7125 ORIGIN_HEX7128 ORIGIN_HEX7129
0.6161648 1.6679603 -0.8932291 -2.0300292 0.1418538
ORIGIN_HEX7130 ORIGIN_HEX7131 ORIGIN_HEX7132 ORIGIN_HEX7133 ORIGIN_HEX7134
-0.0516554 0.3961847 0.4730313 -2.3228178 0.3248238
ORIGIN_HEX7135 ORIGIN_HEX7166 ORIGIN_HEX7167 ORIGIN_HEX7168 ORIGIN_HEX7169
-0.3237626 0.9823812 0.2451522 1.1923197 1.0861046
ORIGIN_HEX7170 ORIGIN_HEX7172 ORIGIN_HEX7173 ORIGIN_HEX7175 ORIGIN_HEX7176
1.4691242 2.6998958 3.3292377 -1.4721312 0.0108058
ORIGIN_HEX7177 ORIGIN_HEX7178 ORIGIN_HEX7179 ORIGIN_HEX7181 ORIGIN_HEX7182
-1.6793216 -0.1029140 -0.2216170 -1.3106760 -1.0863817
ORIGIN_HEX7213 ORIGIN_HEX7214 ORIGIN_HEX7215 ORIGIN_HEX7217 ORIGIN_HEX7218
0.7186236 1.0660409 0.1377600 0.7608086 1.0101910
ORIGIN_HEX7222 ORIGIN_HEX7223 ORIGIN_HEX7224 ORIGIN_HEX7225 ORIGIN_HEX7226
-1.0755657 -0.7904112 0.2994864 -1.2528346 0.0858778
ORIGIN_HEX7227 ORIGIN_HEX7228 ORIGIN_HEX7229 ORIGIN_HEX723 ORIGIN_HEX7230
0.8735153 1.9299704 -1.6805269 2.5424610 -0.9348379
ORIGIN_HEX725 ORIGIN_HEX726 ORIGIN_HEX7260 ORIGIN_HEX7261 ORIGIN_HEX7262
0.4281322 -0.4663528 1.6844360 0.4962219 1.9389985
ORIGIN_HEX7264 ORIGIN_HEX7265 ORIGIN_HEX727 ORIGIN_HEX7271 ORIGIN_HEX7272
1.6861334 0.8943133 1.6268964 0.2437000 -0.3112068
ORIGIN_HEX7273 ORIGIN_HEX7274 ORIGIN_HEX7275 ORIGIN_HEX7277 ORIGIN_HEX728
-0.1424828 -0.5149514 0.8597273 0.4223324 0.7951242
ORIGIN_HEX7307 ORIGIN_HEX7308 ORIGIN_HEX7309 ORIGIN_HEX731 ORIGIN_HEX7310
2.3306548 1.0168298 0.1570442 0.6325394 1.8891094
ORIGIN_HEX7311 ORIGIN_HEX7312 ORIGIN_HEX7316 ORIGIN_HEX7319 ORIGIN_HEX7320
0.7438876 1.5551297 -0.9118344 -1.9222199 -0.4496427
ORIGIN_HEX7321 ORIGIN_HEX7322 ORIGIN_HEX7323 ORIGIN_HEX7324 ORIGIN_HEX7354
2.4016292 -0.6668262 -0.3245755 -2.3537789 0.1928125
ORIGIN_HEX7355 ORIGIN_HEX7356 ORIGIN_HEX7358 ORIGIN_HEX7359 ORIGIN_HEX7363
-0.0799932 -0.0283419 -0.3746279 -0.7654873 1.4437639
ORIGIN_HEX7366 ORIGIN_HEX7367 ORIGIN_HEX7368 ORIGIN_HEX7369 ORIGIN_HEX7371
-0.2800616 -0.6576296 -0.8378296 -1.6025119 -3.1643788
ORIGIN_HEX7402 ORIGIN_HEX7403 ORIGIN_HEX7404 ORIGIN_HEX7406 ORIGIN_HEX7411
0.3909909 0.2199418 -0.5295963 1.9029214 1.6321264
ORIGIN_HEX7414 ORIGIN_HEX7415 ORIGIN_HEX7416 ORIGIN_HEX7418 ORIGIN_HEX7448
0.4269483 -0.9011818 -0.3935760 -1.3304106 0.7307522
ORIGIN_HEX7449 ORIGIN_HEX7450 ORIGIN_HEX7451 ORIGIN_HEX7452 ORIGIN_HEX7453
0.2832954 0.6147409 -1.0462753 1.2327933 -0.3339834
ORIGIN_HEX7458 ORIGIN_HEX7461 ORIGIN_HEX7462 ORIGIN_HEX7463 ORIGIN_HEX7465
1.3864778 -0.1697855 -0.2544186 -0.0253653 1.0821641
ORIGIN_HEX7496 ORIGIN_HEX7498 ORIGIN_HEX7499 ORIGIN_HEX7500 ORIGIN_HEX7501
0.1987072 2.3803411 1.3737169 0.8153663 0.6694248
ORIGIN_HEX7506 ORIGIN_HEX7509 ORIGIN_HEX7510 ORIGIN_HEX7542 ORIGIN_HEX7543
-2.1789812 -0.0418443 -0.5814565 0.7357619 -0.3391416
ORIGIN_HEX7544 ORIGIN_HEX7545 ORIGIN_HEX7546 ORIGIN_HEX7547 ORIGIN_HEX7553
-1.0160937 -1.1042930 0.3036434 0.9440293 -3.0839792
ORIGIN_HEX7555 ORIGIN_HEX7556 ORIGIN_HEX7590 ORIGIN_HEX7591 ORIGIN_HEX7592
-0.7118935 -1.1484405 0.2436595 -0.9801617 -0.1716781
ORIGIN_HEX7594 ORIGIN_HEX7595 ORIGIN_HEX7603 ORIGIN_HEX7604 ORIGIN_HEX7637
1.6369806 -0.5014807 -1.8315909 -0.3364917 -0.5751817
ORIGIN_HEX7638 ORIGIN_HEX7639 ORIGIN_HEX7641 ORIGIN_HEX7647 ORIGIN_HEX7650
-2.1744693 0.8624360 -0.3904032 0.6185768 0.5986575
ORIGIN_HEX7684 ORIGIN_HEX7685 ORIGIN_HEX7686 ORIGIN_HEX7687 ORIGIN_HEX7694
0.3384768 0.1223162 1.8118271 0.7937513 1.8203753
ORIGIN_HEX770 ORIGIN_HEX771 ORIGIN_HEX773 ORIGIN_HEX7731 ORIGIN_HEX7732
2.5744564 0.4297754 2.1235174 0.5895371 -0.5695290
ORIGIN_HEX7733 ORIGIN_HEX7734 ORIGIN_HEX7735 ORIGIN_HEX7740 ORIGIN_HEX775
-0.1757594 0.4777320 1.1861447 0.1303685 0.8440643
ORIGIN_HEX777 ORIGIN_HEX7778 ORIGIN_HEX7779 ORIGIN_HEX778 ORIGIN_HEX7780
-0.1438791 0.2813616 -1.3829254 0.5925656 0.7723722
ORIGIN_HEX7781 ORIGIN_HEX7787 ORIGIN_HEX779 ORIGIN_HEX7825 ORIGIN_HEX7826
0.5789990 -0.1732477 -1.9699218 0.1088265 0.3600227
ORIGIN_HEX7828 ORIGIN_HEX7829 ORIGIN_HEX7831 ORIGIN_HEX7833 ORIGIN_HEX7834
0.3550449 0.2699562 -0.9242299 -0.1281991 1.4730067
ORIGIN_HEX7872 ORIGIN_HEX7873 ORIGIN_HEX7874 ORIGIN_HEX7875 ORIGIN_HEX7876
0.3943419 0.0290616 1.2508086 -0.5050187 -0.0570509
ORIGIN_HEX7878 ORIGIN_HEX7879 ORIGIN_HEX7881 ORIGIN_HEX7919 ORIGIN_HEX7920
1.0224658 -0.7275769 -2.0538276 0.1423612 0.2099509
ORIGIN_HEX7921 ORIGIN_HEX7922 ORIGIN_HEX7923 ORIGIN_HEX7925 ORIGIN_HEX7926
3.0587474 0.4010363 -0.1110583 0.4934746 0.3967650
ORIGIN_HEX7927 ORIGIN_HEX7928 ORIGIN_HEX7967 ORIGIN_HEX7968 ORIGIN_HEX7969
0.6685447 1.9686901 -0.6340767 -1.8617968 0.2175755
ORIGIN_HEX7970 ORIGIN_HEX7972 ORIGIN_HEX7973 ORIGIN_HEX7974 ORIGIN_HEX7976
0.9638044 1.7428717 1.0323936 0.6489037 1.2470281
ORIGIN_HEX8013 ORIGIN_HEX8014 ORIGIN_HEX8015 ORIGIN_HEX8016 ORIGIN_HEX8017
0.3112768 0.9741252 0.5503511 0.9573438 1.5075113
ORIGIN_HEX8018 ORIGIN_HEX8019 ORIGIN_HEX8020 ORIGIN_HEX8021 ORIGIN_HEX8023
0.2112506 0.6845765 0.2351622 -0.3610899 2.0471692
ORIGIN_HEX8061 ORIGIN_HEX8062 ORIGIN_HEX8063 ORIGIN_HEX8065 ORIGIN_HEX8066
-0.2039199 0.2471151 0.1754444 -0.9698946 0.1556114
ORIGIN_HEX8067 ORIGIN_HEX8068 ORIGIN_HEX8070 ORIGIN_HEX8071 ORIGIN_HEX8108
0.1330662 0.7154516 0.0284202 -1.3489424 -0.7465329
ORIGIN_HEX8109 ORIGIN_HEX8110 ORIGIN_HEX8112 ORIGIN_HEX8113 ORIGIN_HEX8114
-0.5625541 0.9318283 1.8703218 0.2115707 -0.3464467
ORIGIN_HEX8115 ORIGIN_HEX8116 ORIGIN_HEX8117 ORIGIN_HEX8155 ORIGIN_HEX8156
-0.4145094 -1.2766161 0.0904077 0.1272125 -0.3955111
ORIGIN_HEX8157 ORIGIN_HEX8158 ORIGIN_HEX8160 ORIGIN_HEX8161 ORIGIN_HEX8162
0.3589832 -0.0903616 0.8748815 0.2645436 -0.5755619
ORIGIN_HEX8163 ORIGIN_HEX8164 ORIGIN_HEX8165 ORIGIN_HEX818 ORIGIN_HEX819
-1.2610592 0.0412427 -0.1608271 1.7950953 0.1866172
ORIGIN_HEX820 ORIGIN_HEX8203 ORIGIN_HEX8207 ORIGIN_HEX8208 ORIGIN_HEX8209
-0.7907823 0.5358492 1.6407714 -2.0970838 0.4694480
ORIGIN_HEX8210 ORIGIN_HEX8211 ORIGIN_HEX823 ORIGIN_HEX824 ORIGIN_HEX8249
0.2954653 0.8778318 1.9544552 1.1969571 -0.6852000
ORIGIN_HEX825 ORIGIN_HEX8250 ORIGIN_HEX8252 ORIGIN_HEX8254 ORIGIN_HEX8255
-1.9977078 0.9661028 0.5899937 0.2708787 3.3245845
ORIGIN_HEX8256 ORIGIN_HEX8258 ORIGIN_HEX8259 ORIGIN_HEX826 ORIGIN_HEX827
-0.4436426 -0.6765412 -0.7890955 -1.2816307 1.7538043
ORIGIN_HEX828 ORIGIN_HEX8296 ORIGIN_HEX8297 ORIGIN_HEX8298 ORIGIN_HEX8299
0.6528839 0.3659244 2.1077819 0.5298197 1.1037798
ORIGIN_HEX8300 ORIGIN_HEX8301 ORIGIN_HEX8302 ORIGIN_HEX8304 ORIGIN_HEX8305
0.4681682 1.4186632 -0.5361136 0.2264550 -1.9545282
ORIGIN_HEX8344 ORIGIN_HEX8345 ORIGIN_HEX8346 ORIGIN_HEX8347 ORIGIN_HEX8348
-1.2945642 1.5547384 -0.1362174 0.7871452 0.1946161
ORIGIN_HEX8349 ORIGIN_HEX8351 ORIGIN_HEX8352 ORIGIN_HEX8353 ORIGIN_HEX8389
-0.4136628 -0.7083865 -1.1463836 -0.5345461 -0.2332291
ORIGIN_HEX8390 ORIGIN_HEX8391 ORIGIN_HEX8392 ORIGIN_HEX8393 ORIGIN_HEX8394
-0.8440541 -0.7923994 0.6396596 1.4640283 -0.1505939
ORIGIN_HEX8395 ORIGIN_HEX8396 ORIGIN_HEX8398 ORIGIN_HEX8439 ORIGIN_HEX8440
-1.3438321 -0.0375942 2.9797922 0.3656828 1.7187234
ORIGIN_HEX8441 ORIGIN_HEX8442 ORIGIN_HEX8443 ORIGIN_HEX8444 ORIGIN_HEX8445
2.2811252 0.4628195 0.4993896 0.6393996 -0.2242880
ORIGIN_HEX8484 ORIGIN_HEX8485 ORIGIN_HEX8486 ORIGIN_HEX8488 ORIGIN_HEX8489
-0.2447957 -1.2749664 0.9593034 0.1172318 1.2514758
ORIGIN_HEX8490 ORIGIN_HEX8532 ORIGIN_HEX8534 ORIGIN_HEX8535 ORIGIN_HEX8536
-0.4319792 0.9078684 -0.8028268 -0.1850040 -0.0051239
ORIGIN_HEX8537 ORIGIN_HEX8538 ORIGIN_HEX8539 ORIGIN_HEX8540 ORIGIN_HEX8580
2.0045249 0.6793416 0.5261391 1.0278281 0.5989198
ORIGIN_HEX8581 ORIGIN_HEX8582 ORIGIN_HEX8583 ORIGIN_HEX8584 ORIGIN_HEX8585
-1.7807932 1.0782828 -0.5060398 0.9477311 -0.2670232
ORIGIN_HEX8586 ORIGIN_HEX8587 ORIGIN_HEX8628 ORIGIN_HEX8629 ORIGIN_HEX8631
-0.6784271 -0.1061946 -0.0524666 1.2129272 0.6101873
ORIGIN_HEX8633 ORIGIN_HEX8634 ORIGIN_HEX866 ORIGIN_HEX867 ORIGIN_HEX8674
0.6238527 0.2118418 -0.6247956 0.7454150 1.1058222
ORIGIN_HEX8675 ORIGIN_HEX8676 ORIGIN_HEX8677 ORIGIN_HEX8679 ORIGIN_HEX8680
-0.4641858 0.8792643 0.3260969 0.4103882 0.7044589
ORIGIN_HEX8681 ORIGIN_HEX870 ORIGIN_HEX872 ORIGIN_HEX8721 ORIGIN_HEX8722
0.4472865 1.2296474 -0.0509449 0.4840985 2.0582208
ORIGIN_HEX8723 ORIGIN_HEX8724 ORIGIN_HEX8725 ORIGIN_HEX8726 ORIGIN_HEX8727
-0.9940266 1.3099837 0.6188996 0.3877432 0.6667344
ORIGIN_HEX8728 ORIGIN_HEX873 ORIGIN_HEX874 ORIGIN_HEX8768 ORIGIN_HEX8769
-0.2560640 -2.2007787 -0.7531591 0.8053722 0.0689228
ORIGIN_HEX8771 ORIGIN_HEX8772 ORIGIN_HEX8773 ORIGIN_HEX8774 ORIGIN_HEX8775
1.4892570 1.1994358 0.7032103 0.6722999 -1.3199871
ORIGIN_HEX8815 ORIGIN_HEX8816 ORIGIN_HEX8817 ORIGIN_HEX8818 ORIGIN_HEX8819
1.7016797 1.9392257 -0.5556514 2.0644924 0.4342662
ORIGIN_HEX8820 ORIGIN_HEX8862 ORIGIN_HEX8864 ORIGIN_HEX8865 ORIGIN_HEX8866
-1.5971351 0.9378360 2.0747333 1.6063922 1.0853750
ORIGIN_HEX8867 ORIGIN_HEX8868 ORIGIN_HEX8910 ORIGIN_HEX8912 ORIGIN_HEX8914
-1.9890076 1.0701208 1.3715751 1.6519857 0.3095338
ORIGIN_HEX8915 ORIGIN_HEX8916 ORIGIN_HEX8917 ORIGIN_HEX8959 ORIGIN_HEX8961
-0.6331327 -0.9461086 1.7249325 1.0592643 -1.0034517
ORIGIN_HEX8962 ORIGIN_HEX8963 ORIGIN_HEX8964 ORIGIN_HEX9007 ORIGIN_HEX9008
1.6357613 0.3893247 1.7743906 0.6607801 -0.0113230
ORIGIN_HEX9010 ORIGIN_HEX9011 ORIGIN_HEX9055 ORIGIN_HEX9056 ORIGIN_HEX9057
0.7907916 0.9676180 -2.3877952 0.4321227 0.4649450
ORIGIN_HEX9103 ORIGIN_HEX9105 ORIGIN_HEX9106 ORIGIN_HEX914 ORIGIN_HEX9145
0.5640655 -2.6834770 -0.0640812 0.3433471 1.5253919
ORIGIN_HEX9150 ORIGIN_HEX9152 ORIGIN_HEX9153 ORIGIN_HEX917 ORIGIN_HEX919
0.1678774 0.7682297 0.2270638 1.2434658 1.0019165
ORIGIN_HEX9193 ORIGIN_HEX920 ORIGIN_HEX9200 ORIGIN_HEX9240 ORIGIN_HEX9246
1.7043871 0.0199281 -2.2644307 0.5877529 0.4200882
ORIGIN_HEX9247 ORIGIN_HEX9283 ORIGIN_HEX9289 ORIGIN_HEX9294 ORIGIN_HEX9340
-0.9793704 2.1352132 2.1693668 1.8096022 0.8157563
ORIGIN_HEX9383 ORIGIN_HEX9384 ORIGIN_HEX9388 ORIGIN_HEX9432 ORIGIN_HEX9471
1.9167501 2.8750572 -0.1122899 1.5531745 0.8443567
ORIGIN_HEX9480 ORIGIN_HEX9482 ORIGIN_HEX9526 ORIGIN_HEX9527 ORIGIN_HEX9575
1.5792782 -2.0777160 1.0498590 2.7225846 1.6215270
ORIGIN_HEX9576 ORIGIN_HEX9621 ORIGIN_HEX9622 ORIGIN_HEX965 ORIGIN_HEX966
1.2226052 1.7851558 2.4904400 0.8635904 -1.5589774
ORIGIN_HEX9668 ORIGIN_HEX9714 ORIGIN_HEX9988 DESTIN_HEX1012 DESTIN_HEX1013
1.7963972 1.9926670 1.4515646 -0.8505448 2.1371957
DESTIN_HEX1014 DESTIN_HEX1058 DESTIN_HEX1059 DESTIN_HEX1060 DESTIN_HEX1061
2.4392918 1.5012611 1.3683686 2.2650609 2.1631184
DESTIN_HEX1104 DESTIN_HEX1106 DESTIN_HEX1107 DESTIN_HEX1108 DESTIN_HEX1152
2.6346794 5.8528577 3.7084968 2.6742219 3.6403263
DESTIN_HEX1153 DESTIN_HEX1154 DESTIN_HEX1199 DESTIN_HEX1200 DESTIN_HEX1201
1.9202933 3.0496575 -0.6714856 3.9742763 3.0623163
DESTIN_HEX1202 DESTIN_HEX1244 DESTIN_HEX1245 DESTIN_HEX1246 DESTIN_HEX1247
4.0892365 -1.1092190 2.6761369 0.4088921 0.8885434
DESTIN_HEX1291 DESTIN_HEX1292 DESTIN_HEX1293 DESTIN_HEX1295 DESTIN_HEX1338
2.2670924 1.3231346 -0.3313009 1.6270986 2.6081265
DESTIN_HEX1339 DESTIN_HEX1340 DESTIN_HEX1341 DESTIN_HEX1385 DESTIN_HEX1386
2.0820137 5.6840145 2.5575008 2.2422450 1.1097647
DESTIN_HEX1387 DESTIN_HEX1388 DESTIN_HEX1433 DESTIN_HEX1434 DESTIN_HEX1479
1.7781377 0.9186043 2.2239704 4.1117571 1.1694435
DESTIN_HEX1480 DESTIN_HEX1481 DESTIN_HEX1525 DESTIN_HEX1526 DESTIN_HEX1527
2.2331871 2.7996499 2.2672631 0.2517871 3.5428602
DESTIN_HEX1528 DESTIN_HEX1529 DESTIN_HEX1573 DESTIN_HEX1574 DESTIN_HEX1575
2.7960569 3.2272057 3.7176463 0.4184977 1.7467598
DESTIN_HEX1619 DESTIN_HEX1621 DESTIN_HEX1622 DESTIN_HEX1623 DESTIN_HEX1666
3.1131494 3.1605457 3.8958264 3.6477143 2.6988697
DESTIN_HEX1668 DESTIN_HEX1669 DESTIN_HEX1670 DESTIN_HEX1671 DESTIN_HEX1715
1.8457071 1.9700051 2.6745542 1.6469305 1.8761551
DESTIN_HEX1717 DESTIN_HEX1718 DESTIN_HEX1761 DESTIN_HEX1762 DESTIN_HEX1763
-0.4833910 3.2929320 3.2947753 1.7415451 0.7001044
DESTIN_HEX1764 DESTIN_HEX1765 DESTIN_HEX1768 DESTIN_HEX1808 DESTIN_HEX1809
2.3935899 1.3777789 1.1091613 3.6482941 0.5460866
DESTIN_HEX1810 DESTIN_HEX1811 DESTIN_HEX1812 DESTIN_HEX1814 DESTIN_HEX1815
-0.4520442 3.7621203 1.0940024 1.8419021 1.7792863
DESTIN_HEX1855 DESTIN_HEX1856 DESTIN_HEX1857 DESTIN_HEX1858 DESTIN_HEX1859
3.1560643 2.5969805 1.5243063 1.8634648 6.3462385
DESTIN_HEX1861 DESTIN_HEX1862 DESTIN_HEX1903 DESTIN_HEX1904 DESTIN_HEX1905
3.6805217 5.1668553 -1.7086968 2.4214460 0.0160016
DESTIN_HEX1906 DESTIN_HEX1907 DESTIN_HEX1909 DESTIN_HEX1950 DESTIN_HEX1952
2.0474593 2.1928021 4.1260834 0.2775323 0.8076370
DESTIN_HEX1953 DESTIN_HEX1955 DESTIN_HEX1956 DESTIN_HEX1957 DESTIN_HEX1996
3.0603038 2.9846139 2.9353131 4.2154533 2.8108959
DESTIN_HEX1997 DESTIN_HEX1998 DESTIN_HEX1999 DESTIN_HEX2000 DESTIN_HEX2003
1.8314389 3.5138675 3.0779434 1.7281527 1.5843170
DESTIN_HEX2046 DESTIN_HEX2047 DESTIN_HEX2049 DESTIN_HEX2050 DESTIN_HEX2051
0.5264932 2.6424225 5.7052257 4.9117476 4.6341692
DESTIN_HEX2090 DESTIN_HEX2092 DESTIN_HEX2093 DESTIN_HEX2094 DESTIN_HEX2095
1.5051300 3.6377414 2.1759788 3.1204667 4.5033304
DESTIN_HEX2096 DESTIN_HEX2139 DESTIN_HEX2140 DESTIN_HEX2141 DESTIN_HEX2142
4.6110041 2.0902743 4.0539418 2.0208120 3.7209923
DESTIN_HEX2143 DESTIN_HEX2145 DESTIN_HEX2146 DESTIN_HEX2184 DESTIN_HEX2187
5.8303843 1.7195713 -0.2273955 2.5165152 1.5954667
DESTIN_HEX2189 DESTIN_HEX2190 DESTIN_HEX2192 DESTIN_HEX2193 DESTIN_HEX2194
4.7225440 5.7782046 -0.5580899 3.0815453 2.4346444
DESTIN_HEX2232 DESTIN_HEX2233 DESTIN_HEX2234 DESTIN_HEX2235 DESTIN_HEX2236
0.6365728 2.5990141 1.7612582 3.9733648 3.9478504
DESTIN_HEX2237 DESTIN_HEX2238 DESTIN_HEX2239 DESTIN_HEX2241 DESTIN_HEX2242
5.4942062 6.6090900 2.5251457 0.6970399 2.4652999
DESTIN_HEX2278 DESTIN_HEX2279 DESTIN_HEX2280 DESTIN_HEX2281 DESTIN_HEX2282
1.7269907 2.3397630 3.2187162 2.7334945 4.0197035
DESTIN_HEX2283 DESTIN_HEX2284 DESTIN_HEX2288 DESTIN_HEX2289 DESTIN_HEX2290
6.2451547 5.6169644 3.9902639 1.6425963 1.6610412
DESTIN_HEX2326 DESTIN_HEX2327 DESTIN_HEX2328 DESTIN_HEX2329 DESTIN_HEX2330
0.7455280 1.2551075 -1.3980458 2.3484387 3.6718388
DESTIN_HEX2331 DESTIN_HEX2332 DESTIN_HEX2337 DESTIN_HEX2340 DESTIN_HEX2341
5.7535628 5.5929228 -0.1140101 3.4279140 2.1518662
DESTIN_HEX2342 DESTIN_HEX2372 DESTIN_HEX2376 DESTIN_HEX2377 DESTIN_HEX2378
1.8472709 2.1097791 1.7397776 5.0054638 5.3221033
DESTIN_HEX2379 DESTIN_HEX2382 DESTIN_HEX2386 DESTIN_HEX2388 DESTIN_HEX2389
5.2328966 1.6326696 2.4598818 0.7868804 1.5827087
DESTIN_HEX2421 DESTIN_HEX2422 DESTIN_HEX2423 DESTIN_HEX2424 DESTIN_HEX2425
2.1930109 3.0010086 3.0551372 1.5856680 4.5188971
DESTIN_HEX2426 DESTIN_HEX2434 DESTIN_HEX2436 DESTIN_HEX2437 DESTIN_HEX2466
5.7522201 0.5502191 4.8790878 1.7610266 -0.1265730
DESTIN_HEX2470 DESTIN_HEX2471 DESTIN_HEX2472 DESTIN_HEX2473 DESTIN_HEX2476
1.2696263 7.2870447 5.6227636 5.9320106 1.6388347
DESTIN_HEX2484 DESTIN_HEX2515 DESTIN_HEX2516 DESTIN_HEX2518 DESTIN_HEX2519
2.3677715 0.8580778 3.0914904 -0.0184782 3.8141356
DESTIN_HEX2520 DESTIN_HEX2532 DESTIN_HEX2533 DESTIN_HEX2534 DESTIN_HEX2562
3.7069278 1.0917542 1.3827510 4.0924280 1.7315435
DESTIN_HEX2563 DESTIN_HEX2564 DESTIN_HEX2565 DESTIN_HEX2566 DESTIN_HEX2567
2.6706183 2.2063795 1.9994580 4.7826134 2.4466076
DESTIN_HEX2570 DESTIN_HEX2579 DESTIN_HEX2580 DESTIN_HEX2609 DESTIN_HEX2611
0.0479511 1.0808116 1.5553260 1.7806606 1.2149006
DESTIN_HEX2612 DESTIN_HEX2613 DESTIN_HEX2614 DESTIN_HEX2655 DESTIN_HEX2657
1.8638383 3.8714205 6.2302085 1.8000049 1.2702492
DESTIN_HEX2658 DESTIN_HEX2660 DESTIN_HEX2661 DESTIN_HEX2664 DESTIN_HEX2703
1.1181614 5.9262998 3.6476738 1.3369262 1.4752353
DESTIN_HEX2705 DESTIN_HEX2706 DESTIN_HEX2707 DESTIN_HEX2708 DESTIN_HEX2712
3.8576512 1.7268255 4.5138135 4.9049747 2.3185339
DESTIN_HEX2752 DESTIN_HEX2753 DESTIN_HEX2754 DESTIN_HEX2755 DESTIN_HEX2758
2.0027417 4.1410190 4.3507764 5.5709600 3.3866644
DESTIN_HEX2797 DESTIN_HEX2798 DESTIN_HEX2799 DESTIN_HEX2800 DESTIN_HEX2802
2.9108743 1.8736152 1.9571143 3.2710990 5.6892381
DESTIN_HEX2806 DESTIN_HEX2843 DESTIN_HEX2844 DESTIN_HEX2845 DESTIN_HEX2846
6.6455658 3.5518093 1.9571366 4.7656261 4.4642589
DESTIN_HEX2847 DESTIN_HEX2848 DESTIN_HEX2849 DESTIN_HEX2891 DESTIN_HEX2893
5.3276882 6.5054422 5.0594175 3.1473767 5.4801660
DESTIN_HEX2894 DESTIN_HEX2895 DESTIN_HEX2896 DESTIN_HEX2897 DESTIN_HEX2900
5.8507035 2.8584938 2.4181347 4.6806016 3.2661386
DESTIN_HEX2937 DESTIN_HEX2939 DESTIN_HEX2940 DESTIN_HEX2941 DESTIN_HEX2942
3.2927781 4.4196330 4.9732297 4.6237441 3.7356881
DESTIN_HEX2943 DESTIN_HEX2987 DESTIN_HEX2988 DESTIN_HEX2990 DESTIN_HEX2994
6.0614487 3.6492993 4.3127927 5.0043242 1.6520956
DESTIN_HEX3031 DESTIN_HEX3033 DESTIN_HEX3036 DESTIN_HEX3084 DESTIN_HEX3125
1.0411933 4.3694420 2.8598325 5.4254801 1.6280820
DESTIN_HEX3129 DESTIN_HEX3130 DESTIN_HEX3135 DESTIN_HEX3172 DESTIN_HEX3173
3.7416931 5.0231574 2.7085321 3.0331996 4.7387123
DESTIN_HEX3176 DESTIN_HEX3177 DESTIN_HEX3182 DESTIN_HEX3218 DESTIN_HEX3220
2.2367836 5.2175287 3.3750694 1.2943788 4.3002902
DESTIN_HEX3221 DESTIN_HEX3223 DESTIN_HEX3224 DESTIN_HEX3225 DESTIN_HEX3229
4.1418687 4.2473922 5.4189739 2.5454175 6.6584090
DESTIN_HEX3238 DESTIN_HEX3266 DESTIN_HEX3268 DESTIN_HEX3269 DESTIN_HEX3270
2.4259143 1.0360282 6.0673405 3.0983625 4.3873313
DESTIN_HEX3271 DESTIN_HEX3272 DESTIN_HEX3273 DESTIN_HEX3276 DESTIN_HEX3277
5.1522535 3.0721414 5.5401171 6.2201076 5.8464030
DESTIN_HEX3312 DESTIN_HEX3314 DESTIN_HEX3316 DESTIN_HEX3317 DESTIN_HEX3318
1.5932076 3.3332813 3.9986491 4.5852341 5.2067461
DESTIN_HEX3319 DESTIN_HEX3320 DESTIN_HEX3322 DESTIN_HEX3323 DESTIN_HEX3325
5.2106669 5.6377708 2.2113234 5.9166170 3.2075450
DESTIN_HEX3362 DESTIN_HEX3363 DESTIN_HEX3364 DESTIN_HEX3365 DESTIN_HEX3366
4.7449049 3.5008886 6.1778120 5.2533868 5.1061139
DESTIN_HEX3367 DESTIN_HEX3368 DESTIN_HEX3370 DESTIN_HEX3371 DESTIN_HEX3372
5.5726224 4.8590522 6.1304476 4.9233463 4.0128006
DESTIN_HEX3406 DESTIN_HEX3408 DESTIN_HEX3409 DESTIN_HEX3410 DESTIN_HEX3411
1.3291448 3.7592698 3.7612866 4.2719119 4.6235778
DESTIN_HEX3412 DESTIN_HEX3413 DESTIN_HEX3414 DESTIN_HEX3415 DESTIN_HEX3416
4.7929580 5.5230993 5.0522706 4.4421448 5.4492086
DESTIN_HEX3417 DESTIN_HEX3418 DESTIN_HEX3419 DESTIN_HEX3426 DESTIN_HEX3453
5.3593718 7.0801345 6.0628258 4.5706110 2.1760832
DESTIN_HEX3456 DESTIN_HEX3457 DESTIN_HEX3458 DESTIN_HEX3459 DESTIN_HEX3460
4.4931925 2.5481347 4.1874025 5.0027552 5.4529767
DESTIN_HEX3461 DESTIN_HEX3462 DESTIN_HEX3463 DESTIN_HEX3464 DESTIN_HEX3465
2.5963728 5.5931875 3.0244485 5.8997799 2.6280303
DESTIN_HEX3466 DESTIN_HEX3467 DESTIN_HEX3468 DESTIN_HEX3472 DESTIN_HEX3473
4.4265786 4.0440120 5.6405680 2.5732674 4.4888555
DESTIN_HEX3499 DESTIN_HEX3502 DESTIN_HEX3503 DESTIN_HEX3504 DESTIN_HEX3505
0.8504898 4.8073611 3.0966264 3.7254052 5.1002590
DESTIN_HEX3506 DESTIN_HEX3507 DESTIN_HEX3508 DESTIN_HEX3509 DESTIN_HEX3511
5.3413914 4.2120080 4.9971151 5.2261916 5.0981715
DESTIN_HEX3512 DESTIN_HEX3513 DESTIN_HEX3514 DESTIN_HEX3518 DESTIN_HEX3519
3.0860163 5.3937753 6.5521124 2.5948701 2.7805742
DESTIN_HEX3547 DESTIN_HEX3549 DESTIN_HEX3551 DESTIN_HEX3552 DESTIN_HEX3554
-0.3186910 2.4912010 3.6471144 3.9198363 2.4920199
DESTIN_HEX3555 DESTIN_HEX3556 DESTIN_HEX3557 DESTIN_HEX3558 DESTIN_HEX3559
3.0423808 4.4924639 4.9302827 4.8531525 6.0663742
DESTIN_HEX3561 DESTIN_HEX3562 DESTIN_HEX3564 DESTIN_HEX3565 DESTIN_HEX3593
3.4914263 6.7726902 2.4996930 2.4629960 2.9395557
DESTIN_HEX3594 DESTIN_HEX3595 DESTIN_HEX3599 DESTIN_HEX3600 DESTIN_HEX3601
2.6038576 2.6530827 4.7842131 3.0549488 6.3187348
DESTIN_HEX3602 DESTIN_HEX3603 DESTIN_HEX3604 DESTIN_HEX3605 DESTIN_HEX3607
6.3477291 4.4642152 3.6414291 5.1540808 5.4754205
DESTIN_HEX3608 DESTIN_HEX3610 DESTIN_HEX3611 DESTIN_HEX3613 DESTIN_HEX3641
5.4714740 3.4270335 3.0726696 2.5173890 2.1009070
DESTIN_HEX3643 DESTIN_HEX3644 DESTIN_HEX3645 DESTIN_HEX3647 DESTIN_HEX3648
3.3606550 5.1863454 2.7237057 4.1272689 4.9436211
DESTIN_HEX3649 DESTIN_HEX3652 DESTIN_HEX3653 DESTIN_HEX3654 DESTIN_HEX3655
4.3492584 3.9797823 5.5682226 3.1690991 3.5163188
DESTIN_HEX3656 DESTIN_HEX3657 DESTIN_HEX3658 DESTIN_HEX3661 DESTIN_HEX3689
0.6330852 1.5364947 1.0444043 3.2162538 2.6634628
DESTIN_HEX3691 DESTIN_HEX3692 DESTIN_HEX3693 DESTIN_HEX3694 DESTIN_HEX3695
2.6402664 1.2202641 4.7473846 5.4053768 5.4628048
DESTIN_HEX3699 DESTIN_HEX3700 DESTIN_HEX3701 DESTIN_HEX3702 DESTIN_HEX3703
5.4050751 3.8688708 3.8290944 3.3547819 5.2466202
DESTIN_HEX3704 DESTIN_HEX3705 DESTIN_HEX3706 DESTIN_HEX3707 DESTIN_HEX3736
2.9891602 0.9460665 0.0578857 2.5066005 2.8934570
DESTIN_HEX3739 DESTIN_HEX3740 DESTIN_HEX3741 DESTIN_HEX3742 DESTIN_HEX3748
2.8881250 2.0471291 3.7299250 5.5984800 2.4433913
DESTIN_HEX3750 DESTIN_HEX3751 DESTIN_HEX3753 DESTIN_HEX3754 DESTIN_HEX3782
3.1026302 4.4703180 3.0341829 2.6522092 3.8214659
DESTIN_HEX3783 DESTIN_HEX3784 DESTIN_HEX3785 DESTIN_HEX3786 DESTIN_HEX3787
4.0114296 4.5138463 1.9371701 2.8985948 4.5987952
DESTIN_HEX3788 DESTIN_HEX3789 DESTIN_HEX3793 DESTIN_HEX3794 DESTIN_HEX3798
5.2886489 5.1020152 5.2157998 5.9259677 0.1583404
DESTIN_HEX3829 DESTIN_HEX3830 DESTIN_HEX3831 DESTIN_HEX3832 DESTIN_HEX3836
3.3867914 5.1181521 4.2445034 4.7919732 4.2292680
DESTIN_HEX3837 DESTIN_HEX3839 DESTIN_HEX3840 DESTIN_HEX3841 DESTIN_HEX3845
4.7601093 0.1433449 2.0627332 4.7982304 0.0364221
DESTIN_HEX3847 DESTIN_HEX3848 DESTIN_HEX3875 DESTIN_HEX3876 DESTIN_HEX3877
7.0657288 3.2542660 4.0664521 5.9022317 4.6630229
DESTIN_HEX3878 DESTIN_HEX3879 DESTIN_HEX3881 DESTIN_HEX3882 DESTIN_HEX3884
5.0862069 3.3501164 3.0266768 2.6886721 5.2891588
DESTIN_HEX3886 DESTIN_HEX3887 DESTIN_HEX3888 DESTIN_HEX3895 DESTIN_HEX3922
3.5289754 6.9107022 5.4933486 3.8199117 3.4656169
DESTIN_HEX3923 DESTIN_HEX3924 DESTIN_HEX3925 DESTIN_HEX3926 DESTIN_HEX393
3.5695248 3.1523056 6.6361272 4.8106437 3.5624007
DESTIN_HEX3930 DESTIN_HEX3932 DESTIN_HEX3933 DESTIN_HEX3935 DESTIN_HEX3936
3.0457573 4.9430279 2.8533113 5.2890827 3.3079723
DESTIN_HEX3939 DESTIN_HEX3942 DESTIN_HEX3943 DESTIN_HEX3968 DESTIN_HEX3969
3.6700119 3.3166576 2.5978109 3.6812003 4.5536660
DESTIN_HEX3971 DESTIN_HEX3972 DESTIN_HEX3975 DESTIN_HEX3976 DESTIN_HEX3978
4.7773310 5.1316176 4.6712527 3.2934845 4.2050211
DESTIN_HEX3979 DESTIN_HEX3980 DESTIN_HEX3981 DESTIN_HEX3982 DESTIN_HEX3990
3.1939159 3.7619148 5.0257939 5.4726044 3.3162730
DESTIN_HEX4016 DESTIN_HEX4017 DESTIN_HEX4018 DESTIN_HEX4019 DESTIN_HEX4020
3.5523528 3.9163947 2.8054543 3.3345446 5.0494214
DESTIN_HEX4023 DESTIN_HEX4024 DESTIN_HEX4025 DESTIN_HEX4026 DESTIN_HEX4028
4.8871422 1.7999735 4.3623205 4.5027365 5.7928480
DESTIN_HEX4029 DESTIN_HEX4030 DESTIN_HEX4033 DESTIN_HEX4038 DESTIN_HEX4062
5.0641090 6.2808507 2.0992767 7.7458687 3.5886629
DESTIN_HEX4063 DESTIN_HEX4064 DESTIN_HEX4065 DESTIN_HEX4066 DESTIN_HEX4067
3.5466916 4.9083944 5.1104155 3.7449816 3.6618509
DESTIN_HEX4070 DESTIN_HEX4071 DESTIN_HEX4073 DESTIN_HEX4074 DESTIN_HEX4075
4.2087113 3.5267278 3.6736114 4.2509606 5.5150730
DESTIN_HEX4076 DESTIN_HEX4083 DESTIN_HEX4084 DESTIN_HEX4109 DESTIN_HEX4111
5.7992435 4.1582929 5.6445956 1.2339192 2.6275953
DESTIN_HEX4112 DESTIN_HEX4113 DESTIN_HEX4114 DESTIN_HEX4117 DESTIN_HEX4118
4.3094054 3.7687107 3.9774114 4.3418697 4.6279627
DESTIN_HEX4122 DESTIN_HEX4123 DESTIN_HEX4124 DESTIN_HEX4127 DESTIN_HEX4130
6.6170239 1.4550848 6.3475777 2.7155857 4.7638164
DESTIN_HEX4131 DESTIN_HEX4132 DESTIN_HEX4156 DESTIN_HEX4157 DESTIN_HEX4159
4.3921004 6.5055537 4.1422960 2.9009483 2.2509105
DESTIN_HEX4161 DESTIN_HEX4163 DESTIN_HEX4167 DESTIN_HEX4168 DESTIN_HEX4169
1.8967742 5.0996525 3.9764036 5.2646249 5.0038595
DESTIN_HEX4176 DESTIN_HEX4177 DESTIN_HEX4178 DESTIN_HEX4179 DESTIN_HEX4203
5.6993612 6.2023502 4.9994467 4.6165423 3.8530836
DESTIN_HEX4205 DESTIN_HEX4206 DESTIN_HEX4207 DESTIN_HEX4208 DESTIN_HEX4209
4.1306172 1.6627947 4.6403921 3.4327333 4.7956984
DESTIN_HEX4210 DESTIN_HEX4211 DESTIN_HEX4215 DESTIN_HEX4221 DESTIN_HEX4224
2.9432003 4.9352193 5.2230079 3.0007762 4.1090911
DESTIN_HEX4225 DESTIN_HEX4226 DESTIN_HEX4227 DESTIN_HEX4250 DESTIN_HEX4251
5.2396903 5.2861194 3.0029012 2.1253209 3.5838053
DESTIN_HEX4253 DESTIN_HEX4254 DESTIN_HEX4256 DESTIN_HEX4257 DESTIN_HEX4271
5.0833525 4.5335372 3.8385713 4.5649949 5.2574970
DESTIN_HEX4272 DESTIN_HEX4273 DESTIN_HEX4297 DESTIN_HEX4300 DESTIN_HEX4301
5.9513741 1.9841045 2.3425267 3.6205631 3.1162260
DESTIN_HEX4302 DESTIN_HEX4304 DESTIN_HEX4315 DESTIN_HEX4318 DESTIN_HEX4319
4.0023888 4.9699495 3.3548780 5.3236295 4.5934911
DESTIN_HEX4320 DESTIN_HEX4321 DESTIN_HEX4343 DESTIN_HEX4345 DESTIN_HEX4346
2.6249710 2.6296299 5.3900641 3.4796406 5.0953693
DESTIN_HEX4347 DESTIN_HEX4348 DESTIN_HEX4351 DESTIN_HEX4362 DESTIN_HEX4365
2.5241294 3.4539237 5.7321325 -1.0477865 4.8405450
DESTIN_HEX4390 DESTIN_HEX4391 DESTIN_HEX4392 DESTIN_HEX4393 DESTIN_HEX4394
4.4429831 1.6426677 4.6952785 2.2352359 5.3593457
DESTIN_HEX4395 DESTIN_HEX4398 DESTIN_HEX4409 DESTIN_HEX4412 DESTIN_HEX4413
3.2195550 1.6974704 1.1292650 3.7198391 5.3219002
DESTIN_HEX4414 DESTIN_HEX4415 DESTIN_HEX4436 DESTIN_HEX4437 DESTIN_HEX4438
4.0703119 5.8834909 3.1498998 2.4019966 2.4992408
DESTIN_HEX4439 DESTIN_HEX444 DESTIN_HEX4440 DESTIN_HEX4441 DESTIN_HEX4442
2.7028829 3.2257074 2.6942045 4.3646092 3.4864769
DESTIN_HEX4459 DESTIN_HEX4460 DESTIN_HEX4484 DESTIN_HEX4485 DESTIN_HEX4486
4.7887306 3.3976404 3.9517244 2.1183820 2.8544903
DESTIN_HEX4487 DESTIN_HEX4488 DESTIN_HEX4489 DESTIN_HEX4490 DESTIN_HEX4492
2.8360991 4.0895981 2.8851534 3.0076988 4.2349386
DESTIN_HEX4502 DESTIN_HEX4506 DESTIN_HEX4507 DESTIN_HEX4508 DESTIN_HEX4509
4.8047837 4.5708939 7.2554601 5.1311731 4.4355578
DESTIN_HEX4530 DESTIN_HEX4532 DESTIN_HEX4533 DESTIN_HEX4534 DESTIN_HEX4535
2.8062159 2.4768078 1.9799170 5.5660293 1.8871444
DESTIN_HEX4537 DESTIN_HEX4538 DESTIN_HEX4550 DESTIN_HEX4552 DESTIN_HEX4553
2.9990501 4.3546013 0.1483456 1.1924332 4.8963025
DESTIN_HEX4554 DESTIN_HEX4556 DESTIN_HEX4577 DESTIN_HEX4579 DESTIN_HEX4580
4.1635568 5.2527269 4.6765968 2.8911528 2.8648536
DESTIN_HEX4581 DESTIN_HEX4582 DESTIN_HEX4583 DESTIN_HEX4584 DESTIN_HEX4585
1.4321228 4.5700989 2.6745368 3.2581350 3.0088778
DESTIN_HEX4586 DESTIN_HEX4600 DESTIN_HEX4601 DESTIN_HEX4602 DESTIN_HEX4603
3.0535328 4.8253032 4.0804215 5.7189772 3.9266287
DESTIN_HEX4624 DESTIN_HEX4626 DESTIN_HEX4627 DESTIN_HEX4628 DESTIN_HEX4629
3.3456040 2.5824083 2.0328752 4.0651793 4.6572454
DESTIN_HEX4631 DESTIN_HEX4632 DESTIN_HEX4646 DESTIN_HEX4647 DESTIN_HEX4648
3.9159873 3.7606933 4.2344249 5.1795628 5.6627985
DESTIN_HEX4649 DESTIN_HEX4650 DESTIN_HEX4671 DESTIN_HEX4674 DESTIN_HEX4675
4.5948048 3.3713238 3.0286430 2.7069621 2.8589946
DESTIN_HEX4676 DESTIN_HEX4679 DESTIN_HEX4692 DESTIN_HEX4694 DESTIN_HEX4695
4.4093753 1.7359751 1.8580941 5.5142280 6.1382635
DESTIN_HEX4696 DESTIN_HEX4698 DESTIN_HEX4720 DESTIN_HEX4721 DESTIN_HEX4722
5.6054445 2.7861226 3.5355472 2.9159931 2.7562578
DESTIN_HEX4726 DESTIN_HEX4741 DESTIN_HEX4742 DESTIN_HEX4743 DESTIN_HEX4765
4.4480685 6.0958954 4.9658532 6.0100442 4.0614846
DESTIN_HEX4766 DESTIN_HEX4768 DESTIN_HEX4769 DESTIN_HEX4770 DESTIN_HEX4786
3.1673716 3.4438003 5.5924075 4.3704385 4.4246679
DESTIN_HEX4788 DESTIN_HEX4789 DESTIN_HEX4790 DESTIN_HEX4791 DESTIN_HEX4792
4.8622078 5.4346170 4.1476607 5.0175930 1.6988692
DESTIN_HEX4812 DESTIN_HEX4813 DESTIN_HEX4814 DESTIN_HEX4815 DESTIN_HEX4816
2.5887215 4.3915860 4.7333495 4.2951211 4.5375543
DESTIN_HEX4817 DESTIN_HEX4835 DESTIN_HEX4836 DESTIN_HEX4837 DESTIN_HEX4838
3.4273796 5.1329357 6.8384654 5.2648272 3.8240646
DESTIN_HEX4839 DESTIN_HEX4840 DESTIN_HEX4859 DESTIN_HEX4860 DESTIN_HEX4861
-1.4482746 0.1777183 1.9134828 3.6554718 4.5232734
DESTIN_HEX4862 DESTIN_HEX4863 DESTIN_HEX4864 DESTIN_HEX4865 DESTIN_HEX4867
5.2139428 2.6367587 2.9070278 4.2773554 3.7323557
DESTIN_HEX488 DESTIN_HEX4880 DESTIN_HEX4883 DESTIN_HEX4884 DESTIN_HEX4885
3.2116287 0.9093578 4.3223012 4.5110175 4.2873712
DESTIN_HEX4886 DESTIN_HEX4887 DESTIN_HEX490 DESTIN_HEX4905 DESTIN_HEX4906
3.7802770 3.1587106 4.2454790 2.6217780 4.3303494
DESTIN_HEX4908 DESTIN_HEX4909 DESTIN_HEX491 DESTIN_HEX4911 DESTIN_HEX4912
4.2697399 4.5754075 4.0862329 3.7180729 5.0579158
DESTIN_HEX4913 DESTIN_HEX4925 DESTIN_HEX4926 DESTIN_HEX4930 DESTIN_HEX4931
3.9837285 2.6294309 1.7462416 5.0602101 4.4849254
DESTIN_HEX4932 DESTIN_HEX4933 DESTIN_HEX4953 DESTIN_HEX4954 DESTIN_HEX4955
1.7608285 2.8315484 4.1171731 4.5050846 4.7116515
DESTIN_HEX4956 DESTIN_HEX4958 DESTIN_HEX4961 DESTIN_HEX4974 DESTIN_HEX4978
3.4568935 3.1019602 4.5383025 1.9346804 5.9151112
DESTIN_HEX4981 DESTIN_HEX4999 DESTIN_HEX5000 DESTIN_HEX5001 DESTIN_HEX5002
4.4172935 4.8702016 5.0772762 4.6158338 4.7384855
DESTIN_HEX5003 DESTIN_HEX5006 DESTIN_HEX5007 DESTIN_HEX5019 DESTIN_HEX5025
4.2243833 2.1770189 3.9710054 0.9993800 3.5855311
DESTIN_HEX5026 DESTIN_HEX5027 DESTIN_HEX5028 DESTIN_HEX5047 DESTIN_HEX5048
3.5314795 4.4864867 3.5571964 4.2907163 3.9174493
DESTIN_HEX5049 DESTIN_HEX5050 DESTIN_HEX5052 DESTIN_HEX5054 DESTIN_HEX5066
3.7103265 4.7449334 3.1905589 3.3772919 1.1100235
DESTIN_HEX5072 DESTIN_HEX5073 DESTIN_HEX5075 DESTIN_HEX5093 DESTIN_HEX5094
4.8744414 2.6263438 3.2877822 3.4711772 3.6780351
DESTIN_HEX5095 DESTIN_HEX5096 DESTIN_HEX5097 DESTIN_HEX5098 DESTIN_HEX5101
3.2038848 3.3403507 4.3889486 2.1402436 3.5409522
DESTIN_HEX5102 DESTIN_HEX5119 DESTIN_HEX5121 DESTIN_HEX5140 DESTIN_HEX5141
3.0009886 5.2486007 4.6023228 4.1750351 3.3558262
DESTIN_HEX5142 DESTIN_HEX5143 DESTIN_HEX5144 DESTIN_HEX5148 DESTIN_HEX5149
3.7741308 4.8459715 3.3415995 4.4703940 2.9086200
DESTIN_HEX5160 DESTIN_HEX5166 DESTIN_HEX5167 DESTIN_HEX5168 DESTIN_HEX5169
3.3407747 4.6615996 4.0264554 5.9316912 2.2222362
DESTIN_HEX5188 DESTIN_HEX5189 DESTIN_HEX5190 DESTIN_HEX5191 DESTIN_HEX5197
4.4024507 4.6142358 4.9704509 3.3200937 1.7243465
DESTIN_HEX5205 DESTIN_HEX5206 DESTIN_HEX5212 DESTIN_HEX5213 DESTIN_HEX5214
0.2268384 5.0119853 2.9702295 5.6565205 6.3271920
DESTIN_HEX5215 DESTIN_HEX5234 DESTIN_HEX5235 DESTIN_HEX5236 DESTIN_HEX5237
4.6944917 5.5482134 5.1224156 2.6197363 4.2999695
DESTIN_HEX5239 DESTIN_HEX5240 DESTIN_HEX5242 DESTIN_HEX5244 DESTIN_HEX5252
1.5371496 3.8227720 3.1177592 1.8815359 -0.1655530
DESTIN_HEX5253 DESTIN_HEX5254 DESTIN_HEX5260 DESTIN_HEX5261 DESTIN_HEX5262
5.7063728 4.5343811 4.5921923 6.1319708 2.9288070
DESTIN_HEX5280 DESTIN_HEX5281 DESTIN_HEX5282 DESTIN_HEX5283 DESTIN_HEX5284
5.5013373 4.5756858 4.6093138 4.5796923 3.7029449
DESTIN_HEX5286 DESTIN_HEX5298 DESTIN_HEX5301 DESTIN_HEX5307 DESTIN_HEX5308
3.2863421 1.6031125 3.5473537 4.5315004 4.5361009
DESTIN_HEX5309 DESTIN_HEX5328 DESTIN_HEX5329 DESTIN_HEX5330 DESTIN_HEX5331
4.5235840 3.3576605 5.0082090 4.2296242 4.1412444
DESTIN_HEX5333 DESTIN_HEX5336 DESTIN_HEX5339 DESTIN_HEX5349 DESTIN_HEX535
2.3168331 2.7381649 0.5693847 0.7814832 3.5500159
DESTIN_HEX5350 DESTIN_HEX5354 DESTIN_HEX5355 DESTIN_HEX5356 DESTIN_HEX537
2.4099450 4.0617592 4.6115617 2.7831502 3.0842998
DESTIN_HEX5373 DESTIN_HEX5375 DESTIN_HEX5377 DESTIN_HEX5378 DESTIN_HEX5379
4.7231677 4.1800455 4.1447967 3.5823810 3.9866788
DESTIN_HEX5380 DESTIN_HEX5382 DESTIN_HEX5383 DESTIN_HEX5397 DESTIN_HEX5398
3.1587555 4.4697424 2.6821491 1.0039822 5.2511715
DESTIN_HEX5399 DESTIN_HEX540 DESTIN_HEX5400 DESTIN_HEX5401 DESTIN_HEX5402
4.6652796 3.8696080 5.3201190 4.2449718 4.0444347
DESTIN_HEX5403 DESTIN_HEX5422 DESTIN_HEX5423 DESTIN_HEX5424 DESTIN_HEX5425
1.3605301 2.0365130 3.6337487 5.0280047 5.8632416
DESTIN_HEX5426 DESTIN_HEX5428 DESTIN_HEX5429 DESTIN_HEX5430 DESTIN_HEX5433
4.8298098 3.9969918 3.7813201 4.8869986 0.2339262
DESTIN_HEX5436 DESTIN_HEX5437 DESTIN_HEX5438 DESTIN_HEX5439 DESTIN_HEX5442
3.5351852 2.7365087 3.7943822 3.9777806 3.6213443
DESTIN_HEX5443 DESTIN_HEX5445 DESTIN_HEX5446 DESTIN_HEX5447 DESTIN_HEX5449
2.9255414 3.8488435 6.0808602 4.0392964 5.4271224
DESTIN_HEX5450 DESTIN_HEX5469 DESTIN_HEX5470 DESTIN_HEX5471 DESTIN_HEX5472
2.7560809 0.6710608 4.4737801 4.4205705 4.4491820
DESTIN_HEX5473 DESTIN_HEX5474 DESTIN_HEX5475 DESTIN_HEX5476 DESTIN_HEX5482
2.7697089 4.3942752 3.5412599 3.1776293 4.4840495
DESTIN_HEX5483 DESTIN_HEX5484 DESTIN_HEX5485 DESTIN_HEX5488 DESTIN_HEX5489
2.6368637 4.0542394 3.6883040 2.2549589 1.9174688
DESTIN_HEX5490 DESTIN_HEX5492 DESTIN_HEX5493 DESTIN_HEX5495 DESTIN_HEX5496
4.3662603 4.3094829 5.0189203 4.4962086 4.3395913
DESTIN_HEX5497 DESTIN_HEX5520 DESTIN_HEX5521 DESTIN_HEX5522 DESTIN_HEX5527
0.7803383 4.1125117 3.9131216 4.5065732 2.7048306
DESTIN_HEX5529 DESTIN_HEX5530 DESTIN_HEX5531 DESTIN_HEX5538 DESTIN_HEX5539
4.9010370 3.7915400 3.3603073 6.4466729 4.4167749
DESTIN_HEX5540 DESTIN_HEX5541 DESTIN_HEX5542 DESTIN_HEX5543 DESTIN_HEX5544
4.1391120 4.9220615 5.8124199 5.7550427 2.0258213
DESTIN_HEX5563 DESTIN_HEX5564 DESTIN_HEX5565 DESTIN_HEX5566 DESTIN_HEX5567
0.8870594 4.1037408 4.4946583 3.5801613 3.3244521
DESTIN_HEX5568 DESTIN_HEX5569 DESTIN_HEX5570 DESTIN_HEX5571 DESTIN_HEX5573
4.8880951 2.4231011 4.0333284 3.0900187 1.7435581
DESTIN_HEX5575 DESTIN_HEX5577 DESTIN_HEX5578 DESTIN_HEX5579 DESTIN_HEX5584
4.6003949 3.5680500 3.0322073 4.1760335 4.4295378
DESTIN_HEX5585 DESTIN_HEX5586 DESTIN_HEX5587 DESTIN_HEX5588 DESTIN_HEX5589
5.6139247 4.4885352 3.7970201 4.1160354 6.3284346
DESTIN_HEX5590 DESTIN_HEX5611 DESTIN_HEX5613 DESTIN_HEX5614 DESTIN_HEX5615
2.4325317 4.6645043 3.5191591 3.6833108 4.0893348
DESTIN_HEX5617 DESTIN_HEX5621 DESTIN_HEX5622 DESTIN_HEX5623 DESTIN_HEX5624
3.8545950 4.2434248 3.7946144 4.1178584 4.9010123
DESTIN_HEX5625 DESTIN_HEX5626 DESTIN_HEX5627 DESTIN_HEX5628 DESTIN_HEX5632
4.7051846 4.3285499 4.5068090 4.7777107 5.2973386
DESTIN_HEX5633 DESTIN_HEX5634 DESTIN_HEX5635 DESTIN_HEX5638 DESTIN_HEX5657
5.0028646 6.9497705 5.4806241 4.8009699 2.5078023
DESTIN_HEX5658 DESTIN_HEX5660 DESTIN_HEX5663 DESTIN_HEX5664 DESTIN_HEX5666
3.8076258 2.9957544 4.6950372 2.7464880 1.2508682
DESTIN_HEX5667 DESTIN_HEX5668 DESTIN_HEX5669 DESTIN_HEX5670 DESTIN_HEX5671
2.9324406 2.9047222 4.3098637 3.4492698 4.2609890
DESTIN_HEX5672 DESTIN_HEX5673 DESTIN_HEX5674 DESTIN_HEX5675 DESTIN_HEX5678
5.9407661 3.7487218 4.5200322 3.9880176 3.4957107
DESTIN_HEX5679 DESTIN_HEX5680 DESTIN_HEX5681 DESTIN_HEX5682 DESTIN_HEX5685
1.9996905 4.1256534 3.5224064 4.3537640 5.9950287
DESTIN_HEX5705 DESTIN_HEX5706 DESTIN_HEX5707 DESTIN_HEX5708 DESTIN_HEX5709
3.4563984 4.9908147 4.4409422 3.9411864 4.7406967
DESTIN_HEX5711 DESTIN_HEX5713 DESTIN_HEX5714 DESTIN_HEX5715 DESTIN_HEX5716
4.1338363 3.5374645 3.9838761 3.7535942 4.4388047
DESTIN_HEX5717 DESTIN_HEX5718 DESTIN_HEX5719 DESTIN_HEX5720 DESTIN_HEX5721
4.2008945 3.2805899 4.5948220 4.9519152 4.6627001
DESTIN_HEX5722 DESTIN_HEX5726 DESTIN_HEX5727 DESTIN_HEX5728 DESTIN_HEX5751
2.5855922 5.7788085 3.8860842 3.3962845 3.6239854
DESTIN_HEX5752 DESTIN_HEX5753 DESTIN_HEX5754 DESTIN_HEX5755 DESTIN_HEX5757
4.2027405 4.9300853 3.9615902 3.7011320 4.2084051
DESTIN_HEX5758 DESTIN_HEX5759 DESTIN_HEX5760 DESTIN_HEX5761 DESTIN_HEX5762
3.6074437 4.0735088 1.9098561 3.2039529 2.8514751
DESTIN_HEX5763 DESTIN_HEX5764 DESTIN_HEX5765 DESTIN_HEX5767 DESTIN_HEX5768
3.6894124 3.4144563 3.7359485 5.5416664 3.6107527
DESTIN_HEX5772 DESTIN_HEX5773 DESTIN_HEX5774 DESTIN_HEX5775 DESTIN_HEX5776
4.1514887 3.8854986 3.8614705 5.8432923 4.4414008
DESTIN_HEX5799 DESTIN_HEX5800 DESTIN_HEX5801 DESTIN_HEX5802 DESTIN_HEX5803
4.3726692 4.1797095 3.1277978 3.7327853 3.7369527
DESTIN_HEX5806 DESTIN_HEX5807 DESTIN_HEX5808 DESTIN_HEX5811 DESTIN_HEX5812
4.8032526 5.0218340 3.8089757 3.4104425 3.5020715
DESTIN_HEX5813 DESTIN_HEX5814 DESTIN_HEX5815 DESTIN_HEX5816 DESTIN_HEX5820
4.8450122 3.1430905 4.7146904 2.8979588 5.9189857
DESTIN_HEX5821 DESTIN_HEX5823 DESTIN_HEX583 DESTIN_HEX584 DESTIN_HEX5846
4.8295167 4.2014810 -0.1726946 3.4399059 3.7504824
DESTIN_HEX5847 DESTIN_HEX5848 DESTIN_HEX5849 DESTIN_HEX585 DESTIN_HEX5851
4.9859581 4.0420122 5.2933392 2.4922310 3.1765443
DESTIN_HEX5852 DESTIN_HEX5853 DESTIN_HEX5854 DESTIN_HEX5855 DESTIN_HEX5856
4.1569909 3.7035843 4.7200318 4.8301901 2.6055044
DESTIN_HEX5858 DESTIN_HEX5859 DESTIN_HEX586 DESTIN_HEX5860 DESTIN_HEX5861
6.0933733 5.0833537 4.6574788 3.8246839 3.9029290
DESTIN_HEX5862 DESTIN_HEX5863 DESTIN_HEX5867 DESTIN_HEX5868 DESTIN_HEX5869
3.7304581 2.6002550 6.1257656 5.9382495 2.7649508
DESTIN_HEX587 DESTIN_HEX5893 DESTIN_HEX5894 DESTIN_HEX5895 DESTIN_HEX5898
1.6100450 3.6533080 3.7896204 4.6777046 1.9080720
DESTIN_HEX5899 DESTIN_HEX5901 DESTIN_HEX5902 DESTIN_HEX5903 DESTIN_HEX5904
3.2718163 4.3172723 4.4122457 5.2963253 3.8054588
DESTIN_HEX5905 DESTIN_HEX5906 DESTIN_HEX5907 DESTIN_HEX5908 DESTIN_HEX5909
3.5853623 4.5610496 6.2435560 3.5201135 6.0294018
DESTIN_HEX5910 DESTIN_HEX5914 DESTIN_HEX5915 DESTIN_HEX5916 DESTIN_HEX5940
2.2182585 5.0423035 5.1120072 5.4779045 3.8789882
DESTIN_HEX5941 DESTIN_HEX5942 DESTIN_HEX5943 DESTIN_HEX5944 DESTIN_HEX5945
2.7858789 3.6015242 4.7732260 5.1507049 3.9424092
DESTIN_HEX5946 DESTIN_HEX5947 DESTIN_HEX5948 DESTIN_HEX5949 DESTIN_HEX5950
3.1769543 4.3403475 6.2053437 4.6085433 4.6711992
DESTIN_HEX5951 DESTIN_HEX5954 DESTIN_HEX5955 DESTIN_HEX5956 DESTIN_HEX5957
5.9613019 5.0081509 2.3883999 2.0489199 3.1850547
DESTIN_HEX5961 DESTIN_HEX5962 DESTIN_HEX5963 DESTIN_HEX5987 DESTIN_HEX5988
4.9167809 4.7290437 2.2962046 -0.5244097 4.0529019
DESTIN_HEX5989 DESTIN_HEX5990 DESTIN_HEX5991 DESTIN_HEX5993 DESTIN_HEX5995
2.7637617 4.3926937 4.3678076 4.9111816 3.5802058
DESTIN_HEX5996 DESTIN_HEX5997 DESTIN_HEX5998 DESTIN_HEX5999 DESTIN_HEX6000
3.9276938 4.0530534 3.6740503 3.9942595 4.4647946
DESTIN_HEX6001 DESTIN_HEX6002 DESTIN_HEX6009 DESTIN_HEX6010 DESTIN_HEX6034
5.6514069 4.0378331 4.0328662 4.5680956 3.1349672
DESTIN_HEX6035 DESTIN_HEX6036 DESTIN_HEX6037 DESTIN_HEX6038 DESTIN_HEX6039
3.7384972 4.0140936 3.8497783 4.7842413 4.6037142
DESTIN_HEX6040 DESTIN_HEX6041 DESTIN_HEX6042 DESTIN_HEX6043 DESTIN_HEX6044
4.0347390 5.0355483 4.1684139 5.2644005 3.9054808
DESTIN_HEX6045 DESTIN_HEX6046 DESTIN_HEX6047 DESTIN_HEX6048 DESTIN_HEX6051
2.7608011 2.1774068 4.5695672 5.0273101 3.3148630
DESTIN_HEX6056 DESTIN_HEX6082 DESTIN_HEX6083 DESTIN_HEX6084 DESTIN_HEX6085
4.8317461 3.1242450 3.3901963 3.5890589 5.0004738
DESTIN_HEX6086 DESTIN_HEX6088 DESTIN_HEX6089 DESTIN_HEX6090 DESTIN_HEX6091
5.0162004 5.1260039 4.1307539 5.1970224 4.8832949
DESTIN_HEX6092 DESTIN_HEX6093 DESTIN_HEX6094 DESTIN_HEX6095 DESTIN_HEX6096
5.8783047 3.0773466 5.6186149 5.3605737 5.3798034
DESTIN_HEX6128 DESTIN_HEX6130 DESTIN_HEX6131 DESTIN_HEX6132 DESTIN_HEX6133
1.6269948 3.1875608 4.4004321 4.1662241 5.1067512
DESTIN_HEX6134 DESTIN_HEX6135 DESTIN_HEX6136 DESTIN_HEX6137 DESTIN_HEX6140
3.9181598 5.1676624 5.3567888 4.8945635 3.6468932
DESTIN_HEX6141 DESTIN_HEX6142 DESTIN_HEX6145 DESTIN_HEX6150 DESTIN_HEX6174
5.6340206 4.9165875 4.4423338 3.2924876 3.6961401
DESTIN_HEX6175 DESTIN_HEX6176 DESTIN_HEX6177 DESTIN_HEX6178 DESTIN_HEX6179
-0.3883758 3.8182820 2.5848456 4.4189528 3.6843381
DESTIN_HEX6180 DESTIN_HEX6181 DESTIN_HEX6183 DESTIN_HEX6184 DESTIN_HEX6185
3.2324151 4.1289390 4.8330789 6.1506253 3.7650882
DESTIN_HEX6186 DESTIN_HEX6188 DESTIN_HEX6189 DESTIN_HEX6192 DESTIN_HEX6195
1.0178855 3.6926315 5.0392979 3.1496564 0.3797486
DESTIN_HEX6222 DESTIN_HEX6223 DESTIN_HEX6224 DESTIN_HEX6226 DESTIN_HEX6227
-0.6590108 4.5621556 3.5031153 4.6637302 4.2079756
DESTIN_HEX6228 DESTIN_HEX6229 DESTIN_HEX6230 DESTIN_HEX6231 DESTIN_HEX6232
4.6585405 4.3604463 4.9287869 5.1225133 0.7940821
DESTIN_HEX6233 DESTIN_HEX6234 DESTIN_HEX6235 DESTIN_HEX6237 DESTIN_HEX6239
3.6102099 2.9483460 4.1195504 1.6056854 3.6393690
DESTIN_HEX6241 DESTIN_HEX6242 DESTIN_HEX6272 DESTIN_HEX6273 DESTIN_HEX6274
2.0868903 0.3240889 3.5717754 4.4739095 4.7650499
DESTIN_HEX6275 DESTIN_HEX6276 DESTIN_HEX6278 DESTIN_HEX6279 DESTIN_HEX6280
3.9288659 5.8126471 5.6794483 2.7782532 2.9598601
DESTIN_HEX6281 DESTIN_HEX6283 DESTIN_HEX6284 DESTIN_HEX6286 DESTIN_HEX6289
3.7203909 2.7906850 3.1280743 2.7992922 1.4764234
DESTIN_HEX6290 DESTIN_HEX630 DESTIN_HEX6315 DESTIN_HEX6316 DESTIN_HEX632
2.2307170 2.6519748 3.7433661 1.9806640 6.1710473
DESTIN_HEX6320 DESTIN_HEX6321 DESTIN_HEX6322 DESTIN_HEX6323 DESTIN_HEX6324
4.3716312 4.3298702 5.0347321 4.9849007 1.9660676
DESTIN_HEX6326 DESTIN_HEX6327 DESTIN_HEX6328 DESTIN_HEX633 DESTIN_HEX6330
2.9604093 2.9331220 3.9884079 2.4147355 3.5119978
DESTIN_HEX6331 DESTIN_HEX6337 DESTIN_HEX635 DESTIN_HEX6364 DESTIN_HEX6368
3.7032036 1.2490355 5.4975591 3.1481818 3.0966706
DESTIN_HEX6369 DESTIN_HEX6370 DESTIN_HEX6371 DESTIN_HEX6372 DESTIN_HEX6373
2.7727966 4.5695769 4.7463924 4.5905580 2.7630652
DESTIN_HEX6374 DESTIN_HEX6375 DESTIN_HEX6376 DESTIN_HEX6377 DESTIN_HEX6378
3.0274536 3.9317635 5.3493610 3.3223592 3.5748536
DESTIN_HEX6380 DESTIN_HEX6382 DESTIN_HEX6385 DESTIN_HEX6413 DESTIN_HEX6415
3.4742250 1.4561156 1.9850694 4.4828658 3.4513382
DESTIN_HEX6416 DESTIN_HEX6417 DESTIN_HEX6418 DESTIN_HEX6420 DESTIN_HEX6421
2.8432366 4.4987779 5.5418511 3.3893213 3.7683763
DESTIN_HEX6422 DESTIN_HEX6423 DESTIN_HEX6424 DESTIN_HEX6425 DESTIN_HEX6427
3.4169079 1.2444095 1.7031749 3.4524874 3.2769159
DESTIN_HEX6429 DESTIN_HEX6458 DESTIN_HEX6463 DESTIN_HEX6464 DESTIN_HEX6465
1.6672228 2.4578392 5.1139413 5.0888224 4.2440943
DESTIN_HEX6466 DESTIN_HEX6467 DESTIN_HEX6468 DESTIN_HEX6469 DESTIN_HEX6470
4.6564616 3.3228095 3.8051986 4.6073903 3.2852103
DESTIN_HEX6471 DESTIN_HEX6472 DESTIN_HEX6474 DESTIN_HEX6475 DESTIN_HEX6476
5.2129570 3.2164119 5.6165826 3.6783255 5.2595228
DESTIN_HEX6477 DESTIN_HEX6507 DESTIN_HEX6509 DESTIN_HEX6510 DESTIN_HEX6511
2.9948860 4.4952586 5.0633485 2.7731165 4.6020386
DESTIN_HEX6513 DESTIN_HEX6514 DESTIN_HEX6515 DESTIN_HEX6516 DESTIN_HEX6517
5.4377767 4.1341526 6.2180162 4.6303022 4.4362467
DESTIN_HEX6518 DESTIN_HEX6519 DESTIN_HEX6520 DESTIN_HEX6521 DESTIN_HEX6522
6.0186174 3.2391255 5.0966941 5.2315314 3.6080436
DESTIN_HEX6523 DESTIN_HEX6524 DESTIN_HEX6555 DESTIN_HEX6556 DESTIN_HEX6557
1.6593955 2.4556758 5.1419202 3.5398731 3.9032010
DESTIN_HEX6558 DESTIN_HEX6559 DESTIN_HEX6561 DESTIN_HEX6562 DESTIN_HEX6563
2.9628851 3.4981703 3.0474097 5.0237816 3.6868384
DESTIN_HEX6564 DESTIN_HEX6565 DESTIN_HEX6566 DESTIN_HEX6568 DESTIN_HEX6569
4.3162272 5.2027103 3.6517222 5.1548757 4.6909751
DESTIN_HEX6570 DESTIN_HEX6571 DESTIN_HEX6601 DESTIN_HEX6603 DESTIN_HEX6605
5.7442625 1.8184377 2.6279200 4.6845937 2.7144583
DESTIN_HEX6606 DESTIN_HEX6607 DESTIN_HEX6608 DESTIN_HEX6609 DESTIN_HEX6610
3.7950082 3.6169424 3.2903615 4.0812339 3.2159316
DESTIN_HEX6611 DESTIN_HEX6612 DESTIN_HEX6613 DESTIN_HEX6614 DESTIN_HEX6615
3.9281707 5.1544550 4.0705484 2.2478998 5.6165781
DESTIN_HEX6616 DESTIN_HEX6649 DESTIN_HEX6650 DESTIN_HEX6651 DESTIN_HEX6652
5.5125053 -0.0519043 4.2027869 4.7365735 1.5081372
DESTIN_HEX6653 DESTIN_HEX6654 DESTIN_HEX6655 DESTIN_HEX6656 DESTIN_HEX6657
3.4897017 5.5492789 4.4310917 2.1512904 4.7461574
DESTIN_HEX6659 DESTIN_HEX6660 DESTIN_HEX6661 DESTIN_HEX6663 DESTIN_HEX6695
4.5387998 5.5188021 4.3784236 5.3266245 2.1644065
DESTIN_HEX6696 DESTIN_HEX6697 DESTIN_HEX6698 DESTIN_HEX6699 DESTIN_HEX6700
1.1065215 5.1842247 4.2715546 2.3976601 4.0528618
DESTIN_HEX6702 DESTIN_HEX6703 DESTIN_HEX6706 DESTIN_HEX6707 DESTIN_HEX6708
3.6598983 4.8272082 4.7508875 5.3725730 6.0163648
DESTIN_HEX6709 DESTIN_HEX6744 DESTIN_HEX6745 DESTIN_HEX6746 DESTIN_HEX6747
5.0292209 3.4473233 5.4952437 4.4300439 3.7559614
DESTIN_HEX6749 DESTIN_HEX6750 DESTIN_HEX6751 DESTIN_HEX6753 DESTIN_HEX6754
3.5975030 3.6303793 3.7844756 5.0203667 5.5136709
DESTIN_HEX6755 DESTIN_HEX6757 DESTIN_HEX678 DESTIN_HEX6789 DESTIN_HEX679
5.2300698 5.4875353 0.7446376 4.0062034 2.1495080
DESTIN_HEX6790 DESTIN_HEX6791 DESTIN_HEX6792 DESTIN_HEX6793 DESTIN_HEX6794
4.8526455 4.7802075 3.4750828 4.0340393 3.5596101
DESTIN_HEX6796 DESTIN_HEX6797 DESTIN_HEX6798 DESTIN_HEX680 DESTIN_HEX6800
3.2889134 4.8486425 3.4668225 -0.4304163 5.4654543
DESTIN_HEX6801 DESTIN_HEX6802 DESTIN_HEX681 DESTIN_HEX682 DESTIN_HEX6837
5.0838959 5.3236800 1.1962535 2.9789649 4.2170880
DESTIN_HEX6838 DESTIN_HEX6839 DESTIN_HEX6841 DESTIN_HEX6843 DESTIN_HEX6846
4.8303756 4.9534915 4.7503775 3.2242804 5.6530210
DESTIN_HEX6847 DESTIN_HEX6848 DESTIN_HEX6850 DESTIN_HEX6851 DESTIN_HEX6885
4.4946591 4.2829482 5.0956348 4.9204512 4.5711500
DESTIN_HEX6886 DESTIN_HEX6887 DESTIN_HEX6888 DESTIN_HEX6889 DESTIN_HEX6891
4.4675034 4.2054458 3.9316895 3.6461931 5.6010384
DESTIN_HEX6892 DESTIN_HEX6893 DESTIN_HEX6894 DESTIN_HEX6895 DESTIN_HEX6896
4.0542397 5.4737967 4.9568566 5.4466658 2.6526970
DESTIN_HEX6897 DESTIN_HEX6898 DESTIN_HEX6931 DESTIN_HEX6932 DESTIN_HEX6933
6.1395477 3.2906014 4.1566528 5.3097992 3.2339284
DESTIN_HEX6934 DESTIN_HEX6935 DESTIN_HEX6936 DESTIN_HEX6938 DESTIN_HEX6939
2.4502664 3.9045538 4.5423044 1.7971732 5.1454490
DESTIN_HEX6940 DESTIN_HEX6941 DESTIN_HEX6942 DESTIN_HEX6943 DESTIN_HEX6944
4.1547641 4.2927073 4.8564606 4.1403322 4.0565576
DESTIN_HEX6945 DESTIN_HEX6946 DESTIN_HEX6979 DESTIN_HEX6980 DESTIN_HEX6981
4.3289787 6.2667108 3.8621892 5.8457302 3.9404791
DESTIN_HEX6982 DESTIN_HEX6984 DESTIN_HEX6985 DESTIN_HEX6986 DESTIN_HEX6987
1.1694082 2.0574821 5.2376739 4.4392902 5.3892707
DESTIN_HEX6988 DESTIN_HEX6989 DESTIN_HEX6990 DESTIN_HEX6991 DESTIN_HEX6992
6.1537051 5.2130858 3.9010530 5.2655812 5.4822639
DESTIN_HEX7025 DESTIN_HEX7026 DESTIN_HEX7027 DESTIN_HEX7029 DESTIN_HEX7030
3.8994194 4.1965528 4.7699923 4.2299180 2.9474758
DESTIN_HEX7031 DESTIN_HEX7033 DESTIN_HEX7034 DESTIN_HEX7035 DESTIN_HEX7036
1.9032327 3.7545679 4.7336382 3.9458944 4.4696814
DESTIN_HEX7037 DESTIN_HEX7038 DESTIN_HEX7039 DESTIN_HEX7040 DESTIN_HEX7072
5.9127520 4.7673751 4.9013429 6.6669622 3.8780893
DESTIN_HEX7073 DESTIN_HEX7074 DESTIN_HEX7075 DESTIN_HEX7076 DESTIN_HEX7077
4.1405218 4.6990776 2.4469074 2.4253693 2.9267841
DESTIN_HEX7081 DESTIN_HEX7082 DESTIN_HEX7083 DESTIN_HEX7084 DESTIN_HEX7085
4.9274433 3.3512857 4.1930610 4.9834311 6.2565326
DESTIN_HEX7086 DESTIN_HEX7087 DESTIN_HEX7119 DESTIN_HEX7120 DESTIN_HEX7123
5.0338928 5.6557054 4.3095429 4.1430013 2.0329324
DESTIN_HEX7124 DESTIN_HEX7125 DESTIN_HEX7128 DESTIN_HEX7129 DESTIN_HEX7130
3.7331848 3.0374903 2.0524348 4.6966302 4.5664136
DESTIN_HEX7131 DESTIN_HEX7132 DESTIN_HEX7133 DESTIN_HEX7134 DESTIN_HEX7135
5.0908935 4.9412602 3.5070585 5.7066947 6.0019797
DESTIN_HEX7166 DESTIN_HEX7167 DESTIN_HEX7168 DESTIN_HEX7169 DESTIN_HEX7170
4.2694538 4.5622013 4.0240992 1.9569061 4.3132345
DESTIN_HEX7172 DESTIN_HEX7173 DESTIN_HEX7175 DESTIN_HEX7176 DESTIN_HEX7177
1.9492433 2.8321706 4.3149980 5.0991395 4.8277320
DESTIN_HEX7178 DESTIN_HEX7179 DESTIN_HEX7181 DESTIN_HEX7182 DESTIN_HEX7213
5.3843179 4.9896455 4.2016947 3.8977871 4.7505233
DESTIN_HEX7214 DESTIN_HEX7215 DESTIN_HEX7217 DESTIN_HEX7218 DESTIN_HEX7222
4.1715351 4.2906737 4.9338098 3.4906329 1.9501310
DESTIN_HEX7223 DESTIN_HEX7224 DESTIN_HEX7225 DESTIN_HEX7226 DESTIN_HEX7227
4.2948697 5.7692118 3.8144488 5.0842218 5.6496036
DESTIN_HEX7228 DESTIN_HEX7229 DESTIN_HEX723 DESTIN_HEX7230 DESTIN_HEX725
6.2776609 4.1052063 6.2006158 5.3748515 2.7347412
DESTIN_HEX726 DESTIN_HEX7260 DESTIN_HEX7261 DESTIN_HEX7262 DESTIN_HEX7264
2.2373158 4.6721777 4.1375519 4.9575663 4.8332085
DESTIN_HEX7265 DESTIN_HEX727 DESTIN_HEX7271 DESTIN_HEX7272 DESTIN_HEX7273
3.4757049 3.1530280 5.6035783 5.3450187 5.3836914
DESTIN_HEX7274 DESTIN_HEX7275 DESTIN_HEX7277 DESTIN_HEX728 DESTIN_HEX7307
4.7822189 5.1692017 6.8253339 1.2324378 5.7371945
DESTIN_HEX7308 DESTIN_HEX7309 DESTIN_HEX731 DESTIN_HEX7310 DESTIN_HEX7311
4.6150275 4.0577996 1.7728141 5.3694664 4.6499846
DESTIN_HEX7312 DESTIN_HEX7316 DESTIN_HEX7319 DESTIN_HEX7320 DESTIN_HEX7321
3.1355073 1.0123688 3.7074446 4.7886384 7.0975901
DESTIN_HEX7322 DESTIN_HEX7323 DESTIN_HEX7324 DESTIN_HEX7354 DESTIN_HEX7355
4.6473424 4.2204204 3.3641779 4.1245615 4.4317381
DESTIN_HEX7356 DESTIN_HEX7358 DESTIN_HEX7359 DESTIN_HEX7363 DESTIN_HEX7366
3.6847680 4.4089157 2.8001994 2.2554042 5.2861522
DESTIN_HEX7367 DESTIN_HEX7368 DESTIN_HEX7369 DESTIN_HEX7371 DESTIN_HEX7402
5.2223265 4.5848707 3.6027473 3.3592973 3.9626289
DESTIN_HEX7403 DESTIN_HEX7404 DESTIN_HEX7406 DESTIN_HEX7411 DESTIN_HEX7414
3.8046733 3.2296518 5.1020842 2.2201491 6.3537756
DESTIN_HEX7415 DESTIN_HEX7416 DESTIN_HEX7418 DESTIN_HEX7448 DESTIN_HEX7449
4.3360997 4.9874400 -0.8789174 5.0043342 4.5237854
DESTIN_HEX7450 DESTIN_HEX7451 DESTIN_HEX7452 DESTIN_HEX7453 DESTIN_HEX7458
4.6092150 3.1228620 5.6771659 2.2126709 1.7819767
DESTIN_HEX7461 DESTIN_HEX7462 DESTIN_HEX7463 DESTIN_HEX7465 DESTIN_HEX7496
5.1286360 5.4982882 6.5429782 5.7042095 4.4973166
DESTIN_HEX7498 DESTIN_HEX7499 DESTIN_HEX7500 DESTIN_HEX7501 DESTIN_HEX7506
5.0293399 5.7397585 4.5204823 2.5248145 0.7720127
DESTIN_HEX7509 DESTIN_HEX7510 DESTIN_HEX7542 DESTIN_HEX7543 DESTIN_HEX7544
5.8705979 5.0297556 5.2117557 3.6556406 2.7436799
DESTIN_HEX7545 DESTIN_HEX7546 DESTIN_HEX7547 DESTIN_HEX7553 DESTIN_HEX7555
2.6555995 5.0216190 4.3726109 -0.4811079 4.6200182
DESTIN_HEX7556 DESTIN_HEX7590 DESTIN_HEX7591 DESTIN_HEX7592 DESTIN_HEX7594
4.9123406 3.6236083 0.7862709 3.5258518 4.9335155
DESTIN_HEX7595 DESTIN_HEX7603 DESTIN_HEX7604 DESTIN_HEX7637 DESTIN_HEX7638
1.1633482 4.0988377 6.5173820 3.2173280 1.4397094
DESTIN_HEX7639 DESTIN_HEX7641 DESTIN_HEX7647 DESTIN_HEX7650 DESTIN_HEX7684
4.5171352 3.9344548 1.4229551 6.7514197 3.9646938
DESTIN_HEX7685 DESTIN_HEX7686 DESTIN_HEX7687 DESTIN_HEX7694 DESTIN_HEX770
3.3063597 4.6682541 4.7696321 3.2388673 4.3950148
DESTIN_HEX771 DESTIN_HEX773 DESTIN_HEX7731 DESTIN_HEX7732 DESTIN_HEX7733
-2.0240968 2.1174978 4.2260314 3.7698016 4.8088388
DESTIN_HEX7734 DESTIN_HEX7735 DESTIN_HEX7740 DESTIN_HEX775 DESTIN_HEX777
6.0212505 5.0748560 0.6188303 2.5768988 0.5250493
DESTIN_HEX7778 DESTIN_HEX7779 DESTIN_HEX778 DESTIN_HEX7780 DESTIN_HEX7781
4.4395171 2.8243826 2.0121522 4.6114967 5.5120143
DESTIN_HEX7787 DESTIN_HEX779 DESTIN_HEX7825 DESTIN_HEX7826 DESTIN_HEX7828
1.8126539 2.6139176 4.1320940 4.7912887 5.7036823
DESTIN_HEX7829 DESTIN_HEX7831 DESTIN_HEX7833 DESTIN_HEX7834 DESTIN_HEX7872
4.3897038 3.5886133 1.8031738 1.6830704 4.3214085
DESTIN_HEX7873 DESTIN_HEX7874 DESTIN_HEX7875 DESTIN_HEX7876 DESTIN_HEX7878
3.6097653 4.9733419 4.0195505 5.0577933 5.4400737
DESTIN_HEX7879 DESTIN_HEX7881 DESTIN_HEX7919 DESTIN_HEX7920 DESTIN_HEX7921
2.7671400 1.9556745 3.9813443 2.5155164 6.4839269
DESTIN_HEX7922 DESTIN_HEX7923 DESTIN_HEX7925 DESTIN_HEX7926 DESTIN_HEX7927
5.1600003 4.1305939 4.8637150 3.5788043 4.2755270
DESTIN_HEX7928 DESTIN_HEX7967 DESTIN_HEX7968 DESTIN_HEX7969 DESTIN_HEX7970
4.3583621 3.3555775 1.8641089 4.0897224 5.1689938
DESTIN_HEX7972 DESTIN_HEX7973 DESTIN_HEX7974 DESTIN_HEX7976 DESTIN_HEX8013
5.2075444 5.5934478 4.1778395 5.0321342 4.6751396
DESTIN_HEX8014 DESTIN_HEX8015 DESTIN_HEX8016 DESTIN_HEX8017 DESTIN_HEX8018
4.5718808 4.8370937 5.3063225 4.6549235 3.9451493
DESTIN_HEX8019 DESTIN_HEX8020 DESTIN_HEX8021 DESTIN_HEX8023 DESTIN_HEX8061
5.2960864 4.9524372 3.6326160 6.0499924 3.9858101
DESTIN_HEX8062 DESTIN_HEX8063 DESTIN_HEX8065 DESTIN_HEX8066 DESTIN_HEX8067
4.0380146 4.4038675 1.7837311 3.8683683 4.5639929
DESTIN_HEX8068 DESTIN_HEX8070 DESTIN_HEX8071 DESTIN_HEX8108 DESTIN_HEX8109
5.4172845 4.5070889 3.5486024 3.2108511 4.9975895
DESTIN_HEX8110 DESTIN_HEX8112 DESTIN_HEX8113 DESTIN_HEX8114 DESTIN_HEX8115
5.7421041 5.1143545 4.2581858 4.6037762 4.8237608
DESTIN_HEX8116 DESTIN_HEX8117 DESTIN_HEX8155 DESTIN_HEX8156 DESTIN_HEX8157
3.8452265 4.6001105 4.5953703 4.2427643 5.3904178
DESTIN_HEX8158 DESTIN_HEX8160 DESTIN_HEX8161 DESTIN_HEX8162 DESTIN_HEX8163
4.1308954 4.6818893 3.9275972 4.7119074 4.4006573
DESTIN_HEX8164 DESTIN_HEX8165 DESTIN_HEX818 DESTIN_HEX819 DESTIN_HEX820
4.6641112 4.4363987 1.8656390 2.9764237 2.3205573
DESTIN_HEX8203 DESTIN_HEX8207 DESTIN_HEX8208 DESTIN_HEX8209 DESTIN_HEX8210
4.9293886 4.8590811 3.2939479 5.2322882 4.9904481
DESTIN_HEX8211 DESTIN_HEX823 DESTIN_HEX824 DESTIN_HEX8249 DESTIN_HEX825
5.6209738 2.5979235 2.8299429 3.2532258 0.8908424
DESTIN_HEX8250 DESTIN_HEX8252 DESTIN_HEX8254 DESTIN_HEX8255 DESTIN_HEX8256
5.3030375 2.6520588 4.3252224 6.5772710 4.0736099
DESTIN_HEX8258 DESTIN_HEX8259 DESTIN_HEX826 DESTIN_HEX827 DESTIN_HEX828
3.9031872 2.7381395 1.1072454 5.7659308 3.4112234
DESTIN_HEX8296 DESTIN_HEX8297 DESTIN_HEX8298 DESTIN_HEX8299 DESTIN_HEX8300
4.5002142 5.6996823 4.3168747 2.2005582 3.1287379
DESTIN_HEX8301 DESTIN_HEX8302 DESTIN_HEX8304 DESTIN_HEX8305 DESTIN_HEX8344
4.5649444 3.5218366 4.4696695 2.8016742 3.2551980
DESTIN_HEX8345 DESTIN_HEX8346 DESTIN_HEX8347 DESTIN_HEX8348 DESTIN_HEX8349
5.0486306 2.4340612 4.6164988 4.5760323 3.3725105
DESTIN_HEX8351 DESTIN_HEX8352 DESTIN_HEX8353 DESTIN_HEX8389 DESTIN_HEX8390
3.9581833 3.0978872 2.9627468 3.0667451 2.8165226
DESTIN_HEX8391 DESTIN_HEX8392 DESTIN_HEX8393 DESTIN_HEX8394 DESTIN_HEX8395
3.2027231 2.4114231 3.4082406 3.5956040 3.2167791
DESTIN_HEX8396 DESTIN_HEX8398 DESTIN_HEX8439 DESTIN_HEX8440 DESTIN_HEX8441
4.5045760 6.2529855 3.3384065 3.8459593 5.3829289
DESTIN_HEX8442 DESTIN_HEX8443 DESTIN_HEX8444 DESTIN_HEX8445 DESTIN_HEX8484
4.5631121 4.9210968 5.3239063 4.2582668 3.2635705
DESTIN_HEX8485 DESTIN_HEX8486 DESTIN_HEX8488 DESTIN_HEX8489 DESTIN_HEX8490
3.2824026 2.7742633 3.5567135 5.4163101 3.7643182
DESTIN_HEX8532 DESTIN_HEX8534 DESTIN_HEX8535 DESTIN_HEX8536 DESTIN_HEX8537
4.8535382 2.3270560 4.1666371 3.6490404 5.3194975
DESTIN_HEX8538 DESTIN_HEX8539 DESTIN_HEX8540 DESTIN_HEX8580 DESTIN_HEX8581
5.5753545 5.3538659 5.0333532 3.1170637 1.4417135
DESTIN_HEX8582 DESTIN_HEX8583 DESTIN_HEX8584 DESTIN_HEX8585 DESTIN_HEX8586
5.2300376 4.6152005 5.0998674 4.5587344 4.8147781
DESTIN_HEX8587 DESTIN_HEX8628 DESTIN_HEX8629 DESTIN_HEX8631 DESTIN_HEX8633
5.1590530 2.4488243 4.5359622 5.5039912 5.1381547
DESTIN_HEX8634 DESTIN_HEX866 DESTIN_HEX867 DESTIN_HEX8674 DESTIN_HEX8675
4.7232262 1.1523793 1.9147236 2.6936578 2.1458419
DESTIN_HEX8676 DESTIN_HEX8677 DESTIN_HEX8679 DESTIN_HEX8680 DESTIN_HEX8681
3.8056743 5.3944193 4.7971934 5.7952476 5.6493015
DESTIN_HEX870 DESTIN_HEX872 DESTIN_HEX8721 DESTIN_HEX8722 DESTIN_HEX8723
2.2510151 5.5453843 -0.9876780 4.7275824 1.7542805
DESTIN_HEX8724 DESTIN_HEX8725 DESTIN_HEX8726 DESTIN_HEX8727 DESTIN_HEX8728
4.4162965 5.4663378 4.5595626 4.5375539 3.6377447
DESTIN_HEX873 DESTIN_HEX874 DESTIN_HEX8768 DESTIN_HEX8769 DESTIN_HEX8771
-0.4233694 1.1643586 0.2387770 1.8608855 3.3044117
DESTIN_HEX8772 DESTIN_HEX8773 DESTIN_HEX8774 DESTIN_HEX8775 DESTIN_HEX8815
5.2801325 4.8018136 3.1516845 2.9217890 2.8607349
DESTIN_HEX8816 DESTIN_HEX8817 DESTIN_HEX8818 DESTIN_HEX8819 DESTIN_HEX8820
2.6468505 1.7532837 1.8807388 3.7283580 3.1221765
DESTIN_HEX8862 DESTIN_HEX8864 DESTIN_HEX8865 DESTIN_HEX8866 DESTIN_HEX8867
1.8315950 2.7049437 2.1714108 4.5111766 2.5860852
DESTIN_HEX8868 DESTIN_HEX8910 DESTIN_HEX8912 DESTIN_HEX8914 DESTIN_HEX8915
3.0390411 2.4753274 1.3142224 3.2723508 3.1053101
DESTIN_HEX8916 DESTIN_HEX8917 DESTIN_HEX8959 DESTIN_HEX8961 DESTIN_HEX8962
2.3366815 1.9871027 2.3572699 1.5282740 4.2676011
DESTIN_HEX8963 DESTIN_HEX8964 DESTIN_HEX9007 DESTIN_HEX9008 DESTIN_HEX9010
0.6084691 2.1960287 2.9063043 3.5002873 2.4125914
DESTIN_HEX9011 DESTIN_HEX9055 DESTIN_HEX9056 DESTIN_HEX9057 DESTIN_HEX9103
1.6887608 2.5328127 1.4404796 2.1471001 4.6113701
DESTIN_HEX9105 DESTIN_HEX9106 DESTIN_HEX914 DESTIN_HEX9145 DESTIN_HEX9150
0.2868241 2.3434539 2.6487482 3.1234061 1.8808858
DESTIN_HEX9152 DESTIN_HEX9153 DESTIN_HEX917 DESTIN_HEX919 DESTIN_HEX9193
2.7496225 2.4314684 0.7894815 3.2217161 4.5984970
DESTIN_HEX920 DESTIN_HEX9200 DESTIN_HEX9240 DESTIN_HEX9246 DESTIN_HEX9247
2.3642959 2.6326960 2.9287739 3.6134821 1.7184615
DESTIN_HEX9283 DESTIN_HEX9289 DESTIN_HEX9294 DESTIN_HEX9340 DESTIN_HEX9383
6.0226879 5.7685354 4.9359247 3.7758461 3.7910464
DESTIN_HEX9384 DESTIN_HEX9388 DESTIN_HEX9432 DESTIN_HEX9471 DESTIN_HEX9480
5.6492497 3.3584586 2.7532063 4.7627330 2.3945719
DESTIN_HEX9482 DESTIN_HEX9526 DESTIN_HEX9527 DESTIN_HEX9575 DESTIN_HEX9576
1.1138212 2.2028286 2.2637589 2.6121430 1.1467685
DESTIN_HEX9621 DESTIN_HEX9622 DESTIN_HEX965 DESTIN_HEX966 DESTIN_HEX9668
1.4295567 4.0686291 2.1646485 1.2053448 2.2143921
DESTIN_HEX9714 DESTIN_HEX9988 log(dist)
2.4806693 3.4955293 -1.2091797
Degrees of Freedom: 161670 Total (i.e. Null); 158053 Residual
Null Deviance: 96290000
Residual Deviance: 28500000 AIC: 29290000
CalcRSquared(dbcSIM$data$WEEKDAY_AFTERNOON_PEAK, dbcSIM$fitted.values)
[1] 0.4406584
r2_mcfadden(dbcSIM)
# R2 for Generalized Linear Regression
R2: 0.698
adj. R2: 0.698
11.9Model Comparison
Create a list called model_list by using the code chunk below.
<- list(unconstrained=uncSIM,
model_list originConstrained=orcSIM,
destinationConstrained=decSIM,
doublyConstrained=dbcSIM)
Next, we will compute the RMSE of all the models in model_list file by using the code chunk below.
compare_performance(model_list,
metrics = "RMSE")
# Comparison of Model Performance Indices
Name | Model | RMSE
----------------------------------------
unconstrained | glm | 729.068
originConstrained | glm | 678.683
destinationConstrained | glm | 696.998
doublyConstrained | glm | 576.958
The print above reveals that doubly constrained SIM is the best model among all the four SIMs because it has the smallest RMSE value of 576.958.
11.11Visualizing Fitted
We are going to visualize the observed values and the fitted values of all models in this section. Firstly, we need to extract the fitted values from each model by using the code below.
<- as.data.frame(uncSIM$fitted.values) %>%
df round(digits = 0)
Next, we will join the fitted values to SIM_data data frame and name them appropriately.
<- SIM_data %>%
SIM_data cbind(df) %>%
rename(uncWEEKDAY_AFTERNOON_PEAK = "uncSIM$fitted.values")
Repeat the process for orcSIM.
<- as.data.frame(orcSIM$fitted.values) %>%
df round(digits = 0)
<- SIM_data %>%
SIM_data cbind(df) %>%
rename(orcWEEKDAY_AFTERNOON_PEAK = "orcSIM$fitted.values")
Repeat the process for decSIM.
<- as.data.frame(decSIM$fitted.values) %>%
df round(digits = 0)
<- SIM_data %>%
SIM_data cbind(df) %>%
rename(decWEEKDAY_AFTERNOON_PEAK = "decSIM$fitted.values")
Repeat the process for dbcSIM.
<- as.data.frame(dbcSIM$fitted.values) %>%
df round(digits = 0)
<- SIM_data %>%
SIM_data cbind(df) %>%
rename(dbcWEEKDAY_AFTERNOON_PEAK = "dbcSIM$fitted.values")
<- ggplot(data = SIM_data,
unc_p aes(x = uncWEEKDAY_AFTERNOON_PEAK,
y = WEEKDAY_AFTERNOON_PEAK)) +
geom_point() +
geom_smooth(method = lm)
<- ggplot(data = SIM_data,
orc_p aes(x = orcWEEKDAY_AFTERNOON_PEAK,
y = WEEKDAY_AFTERNOON_PEAK)) +
geom_point() +
geom_smooth(method = lm)
<- ggplot(data = SIM_data,
dec_p aes(x = decWEEKDAY_AFTERNOON_PEAK,
y = WEEKDAY_AFTERNOON_PEAK)) +
geom_point() +
geom_smooth(method = lm)
<- ggplot(data = SIM_data,
dbc_p aes(x = dbcWEEKDAY_AFTERNOON_PEAK,
y = WEEKDAY_AFTERNOON_PEAK)) +
geom_point() +
geom_smooth(method = lm)
ggarrange(unc_p, orc_p, dec_p, dbc_p,
ncol = 2,
nrow = 2)
The trend line of dbcSIM indicates a stronger relationship with a steeper slope, suggesting this model may be capturing the variance in the observed data more effectively.